|
| 1 | +<?php declare(strict_types = 1); |
| 2 | + |
| 3 | +namespace GenericFormOptionsType; |
| 4 | + |
| 5 | +use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; |
| 6 | +use Symfony\Component\Form\AbstractType; |
| 7 | +use Symfony\Component\Form\Extension\Core\Type\NumberType; |
| 8 | +use Symfony\Component\Form\Extension\Core\Type\TextType; |
| 9 | +use Symfony\Component\Form\FormBuilderInterface; |
| 10 | +use Symfony\Component\Form\FormFactoryInterface; |
| 11 | +use Symfony\Component\OptionsResolver\OptionsResolver; |
| 12 | +use function PHPStan\Testing\assertType; |
| 13 | + |
| 14 | +class DataClass |
| 15 | +{ |
| 16 | +} |
| 17 | + |
| 18 | +/** |
| 19 | + * @extends AbstractType<DataClass, array{required: string, optional: int}> |
| 20 | + */ |
| 21 | +class DataClassType extends AbstractType |
| 22 | +{ |
| 23 | + |
| 24 | + public function buildForm(FormBuilderInterface $builder, array $options): void |
| 25 | + { |
| 26 | + assertType('string', $options['required']); |
| 27 | + assertType('int', $options['optional']); |
| 28 | + |
| 29 | + $builder |
| 30 | + ->add('foo', NumberType::class) |
| 31 | + ->add('bar', TextType::class) |
| 32 | + ; |
| 33 | + } |
| 34 | + |
| 35 | + public function configureOptions(OptionsResolver $resolver): void |
| 36 | + { |
| 37 | + $resolver |
| 38 | + ->setDefaults([ |
| 39 | + 'data_class' => DataClass::class, |
| 40 | + 'optional' => 0, |
| 41 | + ]) |
| 42 | + ->setRequired('required') |
| 43 | + ->setAllowedTypes('required', 'string') |
| 44 | + ->setAllowedTypes('optional', 'int') |
| 45 | + ; |
| 46 | + } |
| 47 | + |
| 48 | +} |
| 49 | + |
| 50 | +class FormFactoryAwareClass |
| 51 | +{ |
| 52 | + |
| 53 | + /** @var FormFactoryInterface */ |
| 54 | + private $formFactory; |
| 55 | + |
| 56 | + public function __construct(FormFactoryInterface $formFactory) |
| 57 | + { |
| 58 | + $this->formFactory = $formFactory; |
| 59 | + } |
| 60 | + |
| 61 | + public function doSomething(): void |
| 62 | + { |
| 63 | + $form = $this->formFactory->create(DataClassType::class, new DataClass()); |
| 64 | + assertType('Symfony\Component\Form\FormInterface<GenericFormOptionsType\DataClass>', $form); |
| 65 | + } |
| 66 | + |
| 67 | + public function doSomethingWithOption(): void |
| 68 | + { |
| 69 | + $form = $this->formFactory->create(DataClassType::class, new DataClass(), ['required' => 'foo']); |
| 70 | + assertType('Symfony\Component\Form\FormInterface<GenericFormOptionsType\DataClass>', $form); |
| 71 | + } |
| 72 | + |
| 73 | + public function doSomethingWithInvalidOption(): void |
| 74 | + { |
| 75 | + $form = $this->formFactory->create(DataClassType::class, new DataClass(), ['required' => 42]); |
| 76 | + assertType('Symfony\Component\Form\FormInterface<GenericFormOptionsType\DataClass>', $form); |
| 77 | + } |
| 78 | + |
| 79 | +} |
| 80 | + |
| 81 | +class FormController extends AbstractController |
| 82 | +{ |
| 83 | + |
| 84 | + public function doSomething(): void |
| 85 | + { |
| 86 | + $form = $this->createForm(DataClassType::class, new DataClass()); |
| 87 | + assertType('Symfony\Component\Form\FormInterface<GenericFormOptionsType\DataClass>', $form); |
| 88 | + } |
| 89 | + |
| 90 | + public function doSomethingWithOption(): void |
| 91 | + { |
| 92 | + $form = $this->createForm(DataClassType::class, new DataClass(), ['required' => 'foo']); |
| 93 | + assertType('Symfony\Component\Form\FormInterface<GenericFormOptionsType\DataClass>', $form); |
| 94 | + } |
| 95 | + |
| 96 | + public function doSomethingWithInvalidOption(): void |
| 97 | + { |
| 98 | + $form = $this->createForm(DataClassType::class, new DataClass(), ['required' => 42]); |
| 99 | + assertType('Symfony\Component\Form\FormInterface<GenericFormOptionsType\DataClass>', $form); |
| 100 | + } |
| 101 | + |
| 102 | +} |
0 commit comments