Applied rector rules up to symfony 6.2

This commit is contained in:
Jan Böhmer 2023-05-28 01:21:05 +02:00
parent 88ea920dfb
commit a43af180a7
145 changed files with 563 additions and 889 deletions

View file

@ -27,9 +27,4 @@ class ProjectBOMEntryCollectionType extends AbstractType
'label' => false,
]);
}
public function getBlockPrefix(): string
{
return 'project_bom_entry_collection';
}
}

View file

@ -87,10 +87,4 @@ class ProjectBOMEntryType extends AbstractType
'data_class' => ProjectBOMEntry::class,
]);
}
public function getBlockPrefix(): string
{
return 'project_bom_entry';
}
}

View file

@ -38,9 +38,9 @@ use Symfony\Component\Security\Core\Security;
class ProjectBuildType extends AbstractType implements DataMapperInterface
{
private Security $security;
private \Symfony\Bundle\SecurityBundle\Security $security;
public function __construct(Security $security)
public function __construct(\Symfony\Bundle\SecurityBundle\Security $security)
{
$this->security = $security;
}