another one very similar to the FormTypeFixer. Upgrading form type extensions:
Before:
class MyTypeExtension extends AbstractTypeExtension
{
public function getExtendedType()
{
return 'form';
}
}
After:
use Symfony\Component\Form\Extension\Core\Type\FormType;
class MyTypeExtension extends AbstractTypeExtension
{
public function getExtendedType()
{
return FormType::class;
}
}
Hey,
another one very similar to the
FormTypeFixer
. Upgrading form type extensions:Before:
After:
Cheers Matthias