DX: apply rector rules up to php8.0

This commit is contained in:
2023-04-15 01:05:37 +02:00
parent d8870e906f
commit dde3002100
714 changed files with 2348 additions and 9263 deletions

View File

@@ -17,14 +17,8 @@ class CustomizeFormEvent extends \Symfony\Component\EventDispatcher\Event
{
public const NAME = 'chill_main.customize_form';
protected FormBuilderInterface $builder;
protected string $type;
public function __construct(string $type, FormBuilderInterface $builder)
public function __construct(protected string $type, protected FormBuilderInterface $builder)
{
$this->type = $type;
$this->builder = $builder;
}
public function getBuilder(): FormBuilderInterface