apply rector rules: php up to php82

This commit is contained in:
2023-07-19 23:16:01 +02:00
parent 7b637d1287
commit 023a29cb78
744 changed files with 1369 additions and 1381 deletions

View File

@@ -49,8 +49,20 @@ use Symfony\Contracts\Translation\TranslatorInterface;
class CalendarController extends AbstractController
{
public function __construct(private CalendarACLAwareRepositoryInterface $calendarACLAwareRepository, private DocGeneratorTemplateRepository $docGeneratorTemplateRepository, private FilterOrderHelperFactoryInterface $filterOrderHelperFactory, private LoggerInterface $logger, private PaginatorFactory $paginator, private RemoteCalendarConnectorInterface $remoteCalendarConnector, private SerializerInterface $serializer, private TranslatableStringHelperInterface $translatableStringHelper, private PersonRepository $personRepository, private AccompanyingPeriodRepository $accompanyingPeriodRepository, private UserRepositoryInterface $userRepository, private TranslatorInterface $translator)
{
public function __construct(
private readonly CalendarACLAwareRepositoryInterface $calendarACLAwareRepository,
private readonly DocGeneratorTemplateRepository $docGeneratorTemplateRepository,
private readonly FilterOrderHelperFactoryInterface $filterOrderHelperFactory,
private readonly LoggerInterface $logger,
private readonly PaginatorFactory $paginator,
private readonly RemoteCalendarConnectorInterface $remoteCalendarConnector,
private readonly SerializerInterface $serializer,
private readonly TranslatableStringHelperInterface $translatableStringHelper,
private readonly PersonRepository $personRepository,
private readonly AccompanyingPeriodRepository $accompanyingPeriodRepository,
private readonly UserRepositoryInterface $userRepository,
private readonly TranslatorInterface $translator
) {
}
/**