-
Notifications
You must be signed in to change notification settings - Fork 93
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
Add stub for form options #419
Conversation
7c21546
to
b8b9ebc
Compare
|
||
public function doSomethingWithInvalidOption(): void | ||
{ | ||
$form = $this->formFactory->create(DataClassType::class, new DataClass(), ['required' => 42]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd like to get an error here saying I pass an integer when a string is expected because DataClassType is
AbstractType<DataClass, array{required: string, optional: int}>
I thought it would have been reported by the CallMethodsRuleTest.
What do I miss @ondrejmirtes ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please recreate the scenario in a minimal way on phpstan.org/try so I don't have to hold all the interfaces and Symfony classes in my head.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure.
You already helped me with phpstan/phpstan#12372 (comment).
But I discovered that in Symfony, that the required options in the Factory::create methods and the certains options in the buildForm $options are not exactly the same.
So this would give something like
https://phpstan.org/r/2fc552e7-506e-46a5-aba0-69287a5b8d3e
I dunno if it's possible to have something better than
@implements FormTypeInterface<
* object,
* array{required: string, optional?: int, defined?: bool},
* array{required: string, optional: int, defined?: bool}
* >
b8b9ebc
to
289e279
Compare
289e279
to
d5960d8
Compare
@@ -4,27 +4,28 @@ namespace Symfony\Component\Form; | |||
|
|||
/** | |||
* @template TData | |||
* @template TOptions of array<string, mixed> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This has to be optional, otherwise it's a BC break. See phpstan/phpstan-src#3457
No description provided.