This commit is contained in:
TomasVotruba 2017-08-31 18:28:09 +02:00
parent 0cdcf68351
commit 2efa882675

View File

@ -14,7 +14,7 @@ use Rector\Rector\AbstractRector;
* $form->add('name', 'form.type.text');
*
* into:
* $form->add('name', 'Symfony\Component\Form\Extension\Core\Type\TextType');
* $form->add('name', \Symfony\Component\Form\Extension\Core\Type\TextType::class);
*
* Ref: https://github.com/symfony/symfony/blob/master/UPGRADE-4.0.md#frameworkbundle
*/