8000 [make:validator] phpstan types by seb-jean · Pull Request #1547 · symfony/maker-bundle · GitHub
[go: up one dir, main page]

Skip to content

[make:validator] phpstan types #1547

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 7, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update Constraint.tpl.php
  • Loading branch information
seb-jean authored May 6, 2024
commit e64a2e9214f0ccc8b56d1b67bd9a15ecd45eaf46
2 changes: 1 addition & 1 deletion src/Resources/skeleton/validator/Constraint.tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ class <?= $class_name ?> extends Constraint
* Any public properties become valid options for the annotation.
* Then, use these in your validator class.
*/
public $message = 'The value "{{ value }}" is not valid.';
public string $message = 'The value "{{ value }}" is not valid.';
}
0