diff --git a/migrations/Version20240522213147.php b/migrations/Version20240522213147.php new file mode 100644 index 00000000..a131340d --- /dev/null +++ b/migrations/Version20240522213147.php @@ -0,0 +1,31 @@ +addSql('ALTER TABLE facility ADD active TINYINT(1) DEFAULT NULL, ADD available_hours JSON DEFAULT NULL COMMENT \'(DC2Type:json)\''); + } + + public function down(Schema $schema): void + { + // this down() migration is auto-generated, please modify it to your needs + $this->addSql('ALTER TABLE facility DROP active, DROP available_hours'); + } +} diff --git a/migrations/Version20240522221403.php b/migrations/Version20240522221403.php new file mode 100644 index 00000000..1d6dc980 --- /dev/null +++ b/migrations/Version20240522221403.php @@ -0,0 +1,37 @@ +addSql('ALTER TABLE facility CHANGE available_hours available_hours JSON DEFAULT NULL COMMENT \'(DC2Type:json)\''); + $this->addSql('ALTER TABLE team ADD home_facility_id INT DEFAULT NULL'); + $this->addSql('ALTER TABLE team ADD CONSTRAINT FK_HOME_FACILITY_ID FOREIGN KEY (home_facility_id) REFERENCES facility (id)'); + $this->addSql('CREATE INDEX IDX_HOME_FACILITY ON team (home_facility_id)'); + } + + public function down(Schema $schema): void + { + // this down() migration is auto-generated, please modify it to your needs + $this->addSql('ALTER TABLE facility CHANGE available_hours available_hours JSON DEFAULT NULL COMMENT \'(DC2Type:json)\''); + $this->addSql('ALTER TABLE team DROP FOREIGN KEY FK_C4E0A61F1ACD745D'); + $this->addSql('DROP INDEX IDX_C4E0A61F1ACD745D ON team'); + $this->addSql('ALTER TABLE team DROP home_facility_id'); + } +} diff --git a/src/Dto/FacilityDto.php b/src/Dto/FacilityDto.php index 1c7665cf..0376c486 100644 --- a/src/Dto/FacilityDto.php +++ b/src/Dto/FacilityDto.php @@ -3,6 +3,7 @@ namespace DMD\LaLigaApi\Dto; use DMD\LaLigaApi\Entity\Facility; +use DMD\LaLigaApi\Exception\ValidationException; use phpDocumentor\Reflection\Types\Integer; class FacilityDto @@ -10,10 +11,12 @@ class FacilityDto public int $id; public string $name; public string $address; + public array $availableHourList; public bool $active; public array $gameDtoList; public array $seasonDtoList; - public \DateTime $createdAt; + public \DateTimeImmutable $createdAt; + public array $validationErrors; public function toArray(): array { @@ -29,7 +32,7 @@ class FacilityDto 'id' => $this->id ?? '', 'name' => $this->name ?? '', 'address' => $this->address ?? '', - 'seasonList' => $seasonList, + 'availableHours' => $this->availableHourList ?? [], 'createdAt' => !empty($this->createdAt) ? $this->createdAt->format('Y-m-d H:i:s') : '' ]; } @@ -52,6 +55,10 @@ class FacilityDto { $this->active = $dataList['active']; } + if (isset($dataList['availableHours'])) + { + $this->availableHourList = $dataList['availableHours']; + } if (!empty($dataList['seasonList'])) { foreach ($dataList['seasonList'] as $seasonItem) @@ -63,7 +70,7 @@ class FacilityDto } if (!empty($dataList['createdAt'])) { - $this->createdAt = \DateTime::createFromFormat('Y-m-d H:i:s', $dataList['createdAt'], new \DateTimeZone('Europe/Madrid')); + $this->createdAt = \DateTimeImmutable::createFromFormat('Y-m-d H:i:s', $dataList['createdAt'], new \DateTimeZone('Europe/Madrid')); } } @@ -81,17 +88,33 @@ class FacilityDto { $this->address = $facilityEntity->getAddress(); } + if ($facilityEntity->getAvailableHours() !== null) + { + $this->availableHourList = $facilityEntity->getAvailableHours(); + } if ($facilityEntity->getCreatedAt() !== null) { - $this->createdAt = new \DateTime($facilityEntity->getCreatedAt(), new \DateTimeZone('Europe/Madrid')); + $this->createdAt =$facilityEntity->getCreatedAt(); } } public function validate(): void { -// if (empty($this->name)) -// { -// $this->validationErrors[] = 'El nombre del equipo no puede estar vacío.'; -// } + if (empty($this->name)) + { + $this->validationErrors[] = 'El nombre del pabellón no puede estar vacío.'; + } + if (empty($this->address)) + { + $this->validationErrors[] = 'La dirección del pabellón no puede estar vacío.'; + } + if (empty($this->availableHourList)) + { + $this->validationErrors[] = 'Las horas disponibles del pabellón no pueden estar vacías.'; + } + if (!empty($this->validationErrors)) + { + throw new ValidationException($this->validationErrors); + } } } \ No newline at end of file diff --git a/src/Dto/UserDto.php b/src/Dto/UserDto.php index fecf1791..1a83154c 100644 --- a/src/Dto/UserDto.php +++ b/src/Dto/UserDto.php @@ -42,6 +42,19 @@ class UserDto ]; } + public function toRegisterArray(): array + { + return [ + 'id' => $this->id ?? null, + 'email' => $this->email ?? null, + 'firstName' => $this->firstName ?? null, + 'lastName' => $this->lastName ?? null, + 'phone' => $this->phone, + 'profilePicture' => $this->profilePicture ?? null, + 'birthday' => $this->birthday->format('Y-m-d'), + ]; + } + public function fillFromObject(User $userObj): void { if ($userObj->getId() !== null) diff --git a/src/Entity/Facility.php b/src/Entity/Facility.php index d8cba7f7..822f98c8 100644 --- a/src/Entity/Facility.php +++ b/src/Entity/Facility.php @@ -31,9 +31,19 @@ class Facility #[ORM\Column(nullable: true)] private ?\DateTimeImmutable $createdAt = null; + #[ORM\Column(nullable: true)] + private ?bool $active = null; + + #[ORM\Column(nullable: true)] + private ?array $availableHours = null; + + #[ORM\OneToMany(mappedBy: 'homeFacility', targetEntity: Team::class)] + private Collection $teams; + public function __construct() { $this->games = new ArrayCollection(); + $this->teams = new ArrayCollection(); } public function getId(): ?int @@ -119,4 +129,58 @@ class Facility $this->createdAt = new \DateTimeImmutable('now', $timezone); } + public function isActive(): ?bool + { + return $this->active; + } + + public function setActive(?bool $active): static + { + $this->active = $active; + + return $this; + } + + public function getAvailableHours(): ?array + { + return $this->availableHours; + } + + public function setAvailableHours(?array $availableHours): static + { + $this->availableHours = $availableHours; + + return $this; + } + + /** + * @return Collection + */ + public function getTeams(): Collection + { + return $this->teams; + } + + public function addTeam(Team $team): static + { + if (!$this->teams->contains($team)) { + $this->teams->add($team); + $team->setHomeFacility($this); + } + + return $this; + } + + public function removeTeam(Team $team): static + { + if ($this->teams->removeElement($team)) { + // set the owning side to null (unless already changed) + if ($team->getHomeFacility() === $this) { + $team->setHomeFacility(null); + } + } + + return $this; + } + } diff --git a/src/Entity/Team.php b/src/Entity/Team.php index cad147a1..6ac44861 100644 --- a/src/Entity/Team.php +++ b/src/Entity/Team.php @@ -37,6 +37,9 @@ class Team #[ORM\OneToOne(inversedBy: 'team', cascade: ['persist', 'remove'])] private ?User $captain = null; + #[ORM\ManyToOne(inversedBy: 'teams')] + private ?Facility $homeFacility = null; + public function __construct() { $this->seasons = new ArrayCollection(); @@ -184,4 +187,16 @@ class Team return $this; } + public function getHomeFacility(): ?Facility + { + return $this->homeFacility; + } + + public function setHomeFacility(?Facility $homeFacility): static + { + $this->homeFacility = $homeFacility; + + return $this; + } + } diff --git a/src/Exception/ExceptionListener.php b/src/Exception/ExceptionListener.php index bf482428..df4d974d 100644 --- a/src/Exception/ExceptionListener.php +++ b/src/Exception/ExceptionListener.php @@ -24,7 +24,8 @@ class ExceptionListener $log->setCode($exception->getStatusCode()); $log->setMessage($exception->getMessage()); $response = new JsonResponse([ - 'error'=> [ + 'success' => false, + 'error' => [ 'code' => $exception->getStatusCode(), 'message' => $exception->getMessage() ] @@ -37,7 +38,11 @@ class ExceptionListener $response = new JsonResponse( data: [ 'success' => false, - 'validationErrors' => $exception->getValidationErrors() + 'error' => [ + 'code' => $exception->getCode(), + 'message' => 'Validation errors', + 'validationErrors' => $exception->getValidationErrors() + ] ], status: $exception->getCode() ); diff --git a/src/Service/League/FacilityFactory.php b/src/Service/League/FacilityFactory.php new file mode 100644 index 00000000..d2c9c269 --- /dev/null +++ b/src/Service/League/FacilityFactory.php @@ -0,0 +1,30 @@ +name)) + { + $facilityEntity->setName($facilityDto->name); + } + if (!empty($facilityDto->address)) + { + $facilityEntity->setName($facilityDto->address); + } + if (!empty($facilityDto->address)) + { + $facilityEntity->setName($facilityDto->address); + } + $facilityEntity->setActive(true); + return $facilityEntity; + } +} \ No newline at end of file diff --git a/src/Service/League/createFacilities/HandleCreateFacilities.php b/src/Service/League/createFacilities/HandleCreateFacilities.php new file mode 100644 index 00000000..6c252ee3 --- /dev/null +++ b/src/Service/League/createFacilities/HandleCreateFacilities.php @@ -0,0 +1,59 @@ +userRepository->findOneBy([ + 'email' => $this->security->getUser()?->getUserIdentifier() + ]); + if (is_null($userEntity)) { + throw new HttpException(Response::HTTP_FORBIDDEN, "Unauthorized."); + } + $facilityDto = new FacilityDto(); + $facilityDto->fillFromArray($request->toArray()); + $facilityDto->validate(); + $facilityEntity = $this->facilityFactory::create($facilityDto); + $this->entityManager->persist($facilityEntity); + $this->entityManager->flush(); + + $facilityDto->id = $facilityEntity->getId(); + $facilityDto->createdAt = $facilityEntity->getCreatedAt(); + return new JsonResponse( + data: [ + 'success' => true, + 'league' => $facilityDto->toArray() + ], + status: Response::HTTP_OK + ); + } +} \ No newline at end of file diff --git a/src/Service/User/Handlers/register/HandleRegistration.php b/src/Service/User/Handlers/register/HandleRegistration.php index 1f824f2b..aa9eade0 100644 --- a/src/Service/User/Handlers/register/HandleRegistration.php +++ b/src/Service/User/Handlers/register/HandleRegistration.php @@ -55,7 +55,7 @@ class HandleRegistration 'success' => true, 'message' => 'Usuario creado.', 'token' => $token, - 'user' => $userDto->toArray(), + 'user' => $userDto->toRegisterArray(), ], status: Response::HTTP_OK ); diff --git a/var/cache/dev/ContainerFp3yQxU.legacy b/var/cache/dev/ContainerKNyDmfm.legacy similarity index 100% rename from var/cache/dev/ContainerFp3yQxU.legacy rename to var/cache/dev/ContainerKNyDmfm.legacy diff --git a/var/cache/dev/ContainerFp3yQxU/DMD_LaLigaApi_KernelDevDebugContainer.php b/var/cache/dev/ContainerXJAXgNH/DMD_LaLigaApi_KernelDevDebugContainer.php similarity index 99% rename from var/cache/dev/ContainerFp3yQxU/DMD_LaLigaApi_KernelDevDebugContainer.php rename to var/cache/dev/ContainerXJAXgNH/DMD_LaLigaApi_KernelDevDebugContainer.php index dd62581a..ed6b8207 100644 --- a/var/cache/dev/ContainerFp3yQxU/DMD_LaLigaApi_KernelDevDebugContainer.php +++ b/var/cache/dev/ContainerXJAXgNH/DMD_LaLigaApi_KernelDevDebugContainer.php @@ -1,6 +1,6 @@ services['cache.app'] = $instance = new \Symfony\Component\Cache\Adapter\FilesystemAdapter('5cNu+aH6-E', 0, ($container->targetDir.''.'/pools/app'), new \Symfony\Component\Cache\Marshaller\DefaultMarshaller(NULL, true)); + $container->services['cache.app'] = $instance = new \Symfony\Component\Cache\Adapter\FilesystemAdapter('NaLhWLN+Xk', 0, ($container->targetDir.''.'/pools/app'), new \Symfony\Component\Cache\Marshaller\DefaultMarshaller(NULL, true)); $instance->setLogger(($container->privates['logger'] ?? self::getLoggerService($container))); diff --git a/var/cache/dev/ContainerFp3yQxU/getCache_App_TaggableService.php b/var/cache/dev/ContainerXJAXgNH/getCache_App_TaggableService.php similarity index 99% rename from var/cache/dev/ContainerFp3yQxU/getCache_App_TaggableService.php rename to var/cache/dev/ContainerXJAXgNH/getCache_App_TaggableService.php index 49d34183..ecd62844 100644 --- a/var/cache/dev/ContainerFp3yQxU/getCache_App_TaggableService.php +++ b/var/cache/dev/ContainerXJAXgNH/getCache_App_TaggableService.php @@ -1,6 +1,6 @@ services['cache.security_is_granted_attribute_expression_language'] = \Symfony\Component\Cache\Adapter\AbstractAdapter::createSystemCache('Ar83S6CbdU', 0, $container->getParameter('container.build_id'), ($container->targetDir.''.'/pools/system'), ($container->privates['logger'] ?? self::getLoggerService($container))); + return $container->services['cache.security_is_granted_attribute_expression_language'] = \Symfony\Component\Cache\Adapter\AbstractAdapter::createSystemCache('7-WF8WwGVY', 0, $container->getParameter('container.build_id'), ($container->targetDir.''.'/pools/system'), ($container->privates['logger'] ?? self::getLoggerService($container))); } } diff --git a/var/cache/dev/ContainerFp3yQxU/getCache_SystemClearerService.php b/var/cache/dev/ContainerXJAXgNH/getCache_SystemClearerService.php similarity index 98% rename from var/cache/dev/ContainerFp3yQxU/getCache_SystemClearerService.php rename to var/cache/dev/ContainerXJAXgNH/getCache_SystemClearerService.php index 0df24388..e6d5c514 100644 --- a/var/cache/dev/ContainerFp3yQxU/getCache_SystemClearerService.php +++ b/var/cache/dev/ContainerXJAXgNH/getCache_SystemClearerService.php @@ -1,6 +1,6 @@ services['cache.system'] = \Symfony\Component\Cache\Adapter\AbstractAdapter::createSystemCache('1chR708yRo', 0, $container->getParameter('container.build_id'), ($container->targetDir.''.'/pools/system'), ($container->privates['logger'] ?? self::getLoggerService($container))); + return $container->services['cache.system'] = \Symfony\Component\Cache\Adapter\AbstractAdapter::createSystemCache('+4VOWgVa18', 0, $container->getParameter('container.build_id'), ($container->targetDir.''.'/pools/system'), ($container->privates['logger'] ?? self::getLoggerService($container))); } } diff --git a/var/cache/dev/ContainerFp3yQxU/getCache_ValidatorExpressionLanguageService.php b/var/cache/dev/ContainerXJAXgNH/getCache_ValidatorExpressionLanguageService.php similarity index 96% rename from var/cache/dev/ContainerFp3yQxU/getCache_ValidatorExpressionLanguageService.php rename to var/cache/dev/ContainerXJAXgNH/getCache_ValidatorExpressionLanguageService.php index 906d04ad..3ca34f96 100644 --- a/var/cache/dev/ContainerFp3yQxU/getCache_ValidatorExpressionLanguageService.php +++ b/var/cache/dev/ContainerXJAXgNH/getCache_ValidatorExpressionLanguageService.php @@ -1,6 +1,6 @@ services['cache.validator_expression_language'] = \Symfony\Component\Cache\Adapter\AbstractAdapter::createSystemCache('kKPwXLHhMb', 0, $container->getParameter('container.build_id'), ($container->targetDir.''.'/pools/system'), ($container->privates['logger'] ?? self::getLoggerService($container))); + return $container->services['cache.validator_expression_language'] = \Symfony\Component\Cache\Adapter\AbstractAdapter::createSystemCache('njivdr+jA5', 0, $container->getParameter('container.build_id'), ($container->targetDir.''.'/pools/system'), ($container->privates['logger'] ?? self::getLoggerService($container))); } } diff --git a/var/cache/dev/ContainerFp3yQxU/getConfigBuilder_WarmerService.php b/var/cache/dev/ContainerXJAXgNH/getConfigBuilder_WarmerService.php similarity index 98% rename from var/cache/dev/ContainerFp3yQxU/getConfigBuilder_WarmerService.php rename to var/cache/dev/ContainerXJAXgNH/getConfigBuilder_WarmerService.php index 8aec3b96..885feb05 100644 --- a/var/cache/dev/ContainerFp3yQxU/getConfigBuilder_WarmerService.php +++ b/var/cache/dev/ContainerXJAXgNH/getConfigBuilder_WarmerService.php @@ -1,6 +1,6 @@ setSchemaManagerFactory(new \Doctrine\DBAL\Schema\LegacySchemaManagerFactory()); $a->setMiddlewares([$b]); - return $container->services['doctrine.dbal.default_connection'] = (new \Doctrine\Bundle\DoctrineBundle\ConnectionFactory([], new \Doctrine\DBAL\Tools\DsnParser(['db2' => 'ibm_db2', 'mssql' => 'pdo_sqlsrv', 'mysql' => 'pdo_mysql', 'mysql2' => 'pdo_mysql', 'postgres' => 'pdo_pgsql', 'postgresql' => 'pdo_pgsql', 'pgsql' => 'pdo_pgsql', 'sqlite' => 'pdo_sqlite', 'sqlite3' => 'pdo_sqlite'])))->createConnection(['url' => 'mysql://root:root@localhost:3307/la_liga?serverVersion=8.0.32&charset=utf8mb4', 'driver' => 'pdo_mysql', 'host' => 'localhost', 'port' => NULL, 'user' => 'root', 'password' => NULL, 'driverOptions' => [], 'defaultTableOptions' => []], $a, ($container->privates['doctrine.dbal.default_connection.event_manager'] ?? $container->load('getDoctrine_Dbal_DefaultConnection_EventManagerService')), []); + return $container->services['doctrine.dbal.default_connection'] = (new \Doctrine\Bundle\DoctrineBundle\ConnectionFactory([], new \Doctrine\DBAL\Tools\DsnParser(['db2' => 'ibm_db2', 'mssql' => 'pdo_sqlsrv', 'mysql' => 'pdo_mysql', 'mysql2' => 'pdo_mysql', 'postgres' => 'pdo_pgsql', 'postgresql' => 'pdo_pgsql', 'pgsql' => 'pdo_pgsql', 'sqlite' => 'pdo_sqlite', 'sqlite3' => 'pdo_sqlite'])))->createConnection(['url' => 'mysql://mamb:lakers06@casa.dyb-tech.com:3306/laliga?serverVersion=10.5.22-MariaDB&charset=utf8mb4', 'driver' => 'pdo_mysql', 'host' => 'localhost', 'port' => NULL, 'user' => 'root', 'password' => NULL, 'driverOptions' => [], 'defaultTableOptions' => []], $a, ($container->privates['doctrine.dbal.default_connection.event_manager'] ?? $container->load('getDoctrine_Dbal_DefaultConnection_EventManagerService')), []); } } diff --git a/var/cache/dev/ContainerFp3yQxU/getDoctrine_Dbal_DefaultConnection_EventManagerService.php b/var/cache/dev/ContainerXJAXgNH/getDoctrine_Dbal_DefaultConnection_EventManagerService.php similarity index 99% rename from var/cache/dev/ContainerFp3yQxU/getDoctrine_Dbal_DefaultConnection_EventManagerService.php rename to var/cache/dev/ContainerXJAXgNH/getDoctrine_Dbal_DefaultConnection_EventManagerService.php index 75bd8a3f..91e5be1a 100644 --- a/var/cache/dev/ContainerFp3yQxU/getDoctrine_Dbal_DefaultConnection_EventManagerService.php +++ b/var/cache/dev/ContainerXJAXgNH/getDoctrine_Dbal_DefaultConnection_EventManagerService.php @@ -1,6 +1,6 @@ true, - '.1_TokenStorage~1C7ZKnP' => true, + '.1_ServiceLocator~m6ZpQJ9' => true, + '.1_TokenStorage~fHUnE8b' => true, '.abstract.instanceof.DMD\\LaLigaApi\\Controller\\LeagueController' => true, '.abstract.instanceof.DMD\\LaLigaApi\\Controller\\NotificationController' => true, '.abstract.instanceof.DMD\\LaLigaApi\\Controller\\SeasonController' => true, @@ -260,8 +260,10 @@ return [ 'DMD\\LaLigaApi\\Service\\Common\\EmailSender' => true, 'DMD\\LaLigaApi\\Service\\Common\\NotificationFactory' => true, 'DMD\\LaLigaApi\\Service\\Common\\TeamFactory' => true, + 'DMD\\LaLigaApi\\Service\\League\\FacilityFactory' => true, 'DMD\\LaLigaApi\\Service\\League\\LeagueFactory' => true, 'DMD\\LaLigaApi\\Service\\League\\acceptJoinLeagueRequest\\HandleAcceptJoinLeagueRequest' => true, + 'DMD\\LaLigaApi\\Service\\League\\createFacilities\\HandleCreateFacilities' => true, 'DMD\\LaLigaApi\\Service\\League\\createLeague\\HandleCreateLeague' => true, 'DMD\\LaLigaApi\\Service\\League\\declineJoinLeagueRequest\\HandleDeclineJoinLeagueRequest' => true, 'DMD\\LaLigaApi\\Service\\League\\getAllLeagues\\HandleGetAllLeagues' => true, diff --git a/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.php b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.php index 79e176d2..6982cda6 100644 --- a/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.php +++ b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.php @@ -2,20 +2,20 @@ // This file has been auto-generated by the Symfony Dependency Injection Component for internal use. -if (\class_exists(\ContainerKNyDmfm\DMD_LaLigaApi_KernelDevDebugContainer::class, false)) { +if (\class_exists(\ContainerXJAXgNH\DMD_LaLigaApi_KernelDevDebugContainer::class, false)) { // no-op -} elseif (!include __DIR__.'/ContainerKNyDmfm/DMD_LaLigaApi_KernelDevDebugContainer.php') { - touch(__DIR__.'/ContainerKNyDmfm.legacy'); +} elseif (!include __DIR__.'/ContainerXJAXgNH/DMD_LaLigaApi_KernelDevDebugContainer.php') { + touch(__DIR__.'/ContainerXJAXgNH.legacy'); return; } if (!\class_exists(DMD_LaLigaApi_KernelDevDebugContainer::class, false)) { - \class_alias(\ContainerKNyDmfm\DMD_LaLigaApi_KernelDevDebugContainer::class, DMD_LaLigaApi_KernelDevDebugContainer::class, false); + \class_alias(\ContainerXJAXgNH\DMD_LaLigaApi_KernelDevDebugContainer::class, DMD_LaLigaApi_KernelDevDebugContainer::class, false); } -return new \ContainerKNyDmfm\DMD_LaLigaApi_KernelDevDebugContainer([ - 'container.build_hash' => 'KNyDmfm', - 'container.build_id' => 'bcddf085', - 'container.build_time' => 1715993243, -], __DIR__.\DIRECTORY_SEPARATOR.'ContainerKNyDmfm'); +return new \ContainerXJAXgNH\DMD_LaLigaApi_KernelDevDebugContainer([ + 'container.build_hash' => 'XJAXgNH', + 'container.build_id' => 'a7bc29c8', + 'container.build_time' => 1716415780, +], __DIR__.\DIRECTORY_SEPARATOR.'ContainerXJAXgNH'); diff --git a/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.php.meta b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.php.meta index c9186f95..edbbaa7c 100644 Binary files a/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.php.meta and b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.php.meta differ diff --git a/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.preload.php b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.preload.php index 6134d2fe..7d3e0982 100644 --- a/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.preload.php +++ b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.preload.php @@ -10,186 +10,186 @@ if (in_array(PHP_SAPI, ['cli', 'phpdbg'], true)) { } require dirname(__DIR__, 3).''.\DIRECTORY_SEPARATOR.'vendor/autoload.php'; -(require __DIR__.'/DMD_LaLigaApi_KernelDevDebugContainer.php')->set(\ContainerKNyDmfm\DMD_LaLigaApi_KernelDevDebugContainer::class, null); -require __DIR__.'/ContainerKNyDmfm/EntityManagerGhostAd02211.php'; -require __DIR__.'/ContainerKNyDmfm/RequestPayloadValueResolverGhostE4c6c7a.php'; -require __DIR__.'/ContainerKNyDmfm/getValidator_WhenService.php'; -require __DIR__.'/ContainerKNyDmfm/getValidator_NotCompromisedPasswordService.php'; -require __DIR__.'/ContainerKNyDmfm/getValidator_NoSuspiciousCharactersService.php'; -require __DIR__.'/ContainerKNyDmfm/getValidator_ExpressionService.php'; -require __DIR__.'/ContainerKNyDmfm/getValidator_EmailService.php'; -require __DIR__.'/ContainerKNyDmfm/getValidator_BuilderService.php'; -require __DIR__.'/ContainerKNyDmfm/getValidatorService.php'; -require __DIR__.'/ContainerKNyDmfm/getTwig_Runtime_SecurityCsrfService.php'; -require __DIR__.'/ContainerKNyDmfm/getTwig_Runtime_HttpkernelService.php'; -require __DIR__.'/ContainerKNyDmfm/getTwig_Mailer_MessageListenerService.php'; -require __DIR__.'/ContainerKNyDmfm/getTwigService.php'; -require __DIR__.'/ContainerKNyDmfm/getSession_Handler_NativeService.php'; -require __DIR__.'/ContainerKNyDmfm/getSession_FactoryService.php'; -require __DIR__.'/ContainerKNyDmfm/getServicesResetterService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Validator_UserPasswordService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_UserPasswordHasherService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_UserCheckerService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_User_Provider_Concrete_AppUserProviderService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_PasswordHasherFactoryService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Logout_Listener_CsrfTokenClearingService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Listener_UserProviderService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Listener_UserChecker_MainService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Listener_UserChecker_LoginService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Listener_UserChecker_ApiService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Listener_Session_MainService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Listener_PasswordMigratingService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Listener_Main_UserProviderService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Listener_CsrfProtectionService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Listener_CheckAuthenticatorCredentialsService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_HttpUtilsService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_HelperService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Firewall_Map_Context_MainService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Firewall_Map_Context_LoginService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Firewall_Map_Context_DevService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Firewall_Map_Context_ApiService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Firewall_EventDispatcherLocatorService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Csrf_TokenStorageService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Csrf_TokenManagerService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_ChannelListenerService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Authenticator_ManagersLocatorService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Authenticator_Manager_MainService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Authenticator_Manager_LoginService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Authenticator_Manager_ApiService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Authenticator_Jwt_ApiService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_Authenticator_JsonLogin_LoginService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_AccessMapService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecurity_AccessListenerService.php'; -require __DIR__.'/ContainerKNyDmfm/getSecrets_VaultService.php'; -require __DIR__.'/ContainerKNyDmfm/getRouting_LoaderService.php'; -require __DIR__.'/ContainerKNyDmfm/getPropertyInfoService.php'; -require __DIR__.'/ContainerKNyDmfm/getNelmioApiDoc_Routes_DefaultService.php'; -require __DIR__.'/ContainerKNyDmfm/getNelmioApiDoc_RenderDocsService.php'; -require __DIR__.'/ContainerKNyDmfm/getNelmioApiDoc_ModelDescribers_ObjectService.php'; -require __DIR__.'/ContainerKNyDmfm/getNelmioApiDoc_Generator_DefaultService.php'; -require __DIR__.'/ContainerKNyDmfm/getNelmioApiDoc_Describers_Route_DefaultService.php'; -require __DIR__.'/ContainerKNyDmfm/getNelmioApiDoc_Describers_OpenapiPhp_DefaultService.php'; -require __DIR__.'/ContainerKNyDmfm/getNelmioApiDoc_Describers_ConfigService.php'; -require __DIR__.'/ContainerKNyDmfm/getNelmioApiDoc_Controller_SwaggerYamlService.php'; -require __DIR__.'/ContainerKNyDmfm/getNelmioApiDoc_Controller_SwaggerJsonService.php'; -require __DIR__.'/ContainerKNyDmfm/getMailer_TransportsService.php'; -require __DIR__.'/ContainerKNyDmfm/getMailer_TransportFactory_SmtpService.php'; -require __DIR__.'/ContainerKNyDmfm/getMailer_TransportFactory_SendmailService.php'; -require __DIR__.'/ContainerKNyDmfm/getMailer_TransportFactory_NullService.php'; -require __DIR__.'/ContainerKNyDmfm/getMailer_TransportFactory_NativeService.php'; -require __DIR__.'/ContainerKNyDmfm/getMailer_MailerService.php'; -require __DIR__.'/ContainerKNyDmfm/getLexikJwtAuthentication_KeyLoaderService.php'; -require __DIR__.'/ContainerKNyDmfm/getLexikJwtAuthentication_JwtManagerService.php'; -require __DIR__.'/ContainerKNyDmfm/getLexikJwtAuthentication_EncoderService.php'; -require __DIR__.'/ContainerKNyDmfm/getFragment_Renderer_InlineService.php'; -require __DIR__.'/ContainerKNyDmfm/getErrorControllerService.php'; -require __DIR__.'/ContainerKNyDmfm/getDoctrine_UuidGeneratorService.php'; -require __DIR__.'/ContainerKNyDmfm/getDoctrine_UlidGeneratorService.php'; -require __DIR__.'/ContainerKNyDmfm/getDoctrine_Orm_Validator_UniqueService.php'; -require __DIR__.'/ContainerKNyDmfm/getDoctrine_Orm_Listeners_PdoSessionHandlerSchemaListenerService.php'; -require __DIR__.'/ContainerKNyDmfm/getDoctrine_Orm_Listeners_LockStoreSchemaListenerService.php'; -require __DIR__.'/ContainerKNyDmfm/getDoctrine_Orm_Listeners_DoctrineTokenProviderSchemaListenerService.php'; -require __DIR__.'/ContainerKNyDmfm/getDoctrine_Orm_Listeners_DoctrineDbalCacheAdapterSchemaListenerService.php'; -require __DIR__.'/ContainerKNyDmfm/getDoctrine_Orm_DefaultListeners_AttachEntityListenersService.php'; -require __DIR__.'/ContainerKNyDmfm/getDoctrine_Orm_DefaultEntityManager_PropertyInfoExtractorService.php'; -require __DIR__.'/ContainerKNyDmfm/getDoctrine_Orm_DefaultEntityManagerService.php'; -require __DIR__.'/ContainerKNyDmfm/getDoctrine_Dbal_DefaultConnection_EventManagerService.php'; -require __DIR__.'/ContainerKNyDmfm/getDoctrine_Dbal_DefaultConnectionService.php'; -require __DIR__.'/ContainerKNyDmfm/getDoctrineService.php'; -require __DIR__.'/ContainerKNyDmfm/getDebug_Security_Voter_VoteListenerService.php'; -require __DIR__.'/ContainerKNyDmfm/getDebug_Security_Firewall_Authenticator_MainService.php'; -require __DIR__.'/ContainerKNyDmfm/getDebug_Security_Firewall_Authenticator_LoginService.php'; -require __DIR__.'/ContainerKNyDmfm/getDebug_Security_Firewall_Authenticator_ApiService.php'; -require __DIR__.'/ContainerKNyDmfm/getDebug_Security_EventDispatcher_LoginService.php'; -require __DIR__.'/ContainerKNyDmfm/getDebug_Security_EventDispatcher_ApiService.php'; -require __DIR__.'/ContainerKNyDmfm/getDebug_ErrorHandlerConfiguratorService.php'; -require __DIR__.'/ContainerKNyDmfm/getController_TemplateAttributeListenerService.php'; -require __DIR__.'/ContainerKNyDmfm/getContainer_GetRoutingConditionServiceService.php'; -require __DIR__.'/ContainerKNyDmfm/getContainer_EnvVarProcessorsLocatorService.php'; -require __DIR__.'/ContainerKNyDmfm/getContainer_EnvVarProcessorService.php'; -require __DIR__.'/ContainerKNyDmfm/getCache_ValidatorExpressionLanguageService.php'; -require __DIR__.'/ContainerKNyDmfm/getCache_SystemClearerService.php'; -require __DIR__.'/ContainerKNyDmfm/getCache_SystemService.php'; -require __DIR__.'/ContainerKNyDmfm/getCache_SecurityIsGrantedAttributeExpressionLanguageService.php'; -require __DIR__.'/ContainerKNyDmfm/getCache_GlobalClearerService.php'; -require __DIR__.'/ContainerKNyDmfm/getCache_AppClearerService.php'; -require __DIR__.'/ContainerKNyDmfm/getCache_AppService.php'; -require __DIR__.'/ContainerKNyDmfm/getTemplateControllerService.php'; -require __DIR__.'/ContainerKNyDmfm/getRedirectControllerService.php'; -require __DIR__.'/ContainerKNyDmfm/getHandleUpdateUserService.php'; -require __DIR__.'/ContainerKNyDmfm/getHandleRegistrationService.php'; -require __DIR__.'/ContainerKNyDmfm/getHandleGetNotificationsService.php'; -require __DIR__.'/ContainerKNyDmfm/getHandleDeleteUserService.php'; -require __DIR__.'/ContainerKNyDmfm/getUserSaverService.php'; -require __DIR__.'/ContainerKNyDmfm/getHandleCreateSeasonService.php'; -require __DIR__.'/ContainerKNyDmfm/getHandleCreateGameCalendarRequestService.php'; -require __DIR__.'/ContainerKNyDmfm/getHandleAddTeamService.php'; -require __DIR__.'/ContainerKNyDmfm/getHandleUpdateLeagueService.php'; -require __DIR__.'/ContainerKNyDmfm/getHandleNewJoinLeagueRequestService.php'; -require __DIR__.'/ContainerKNyDmfm/getHandleCaptainRequestService.php'; -require __DIR__.'/ContainerKNyDmfm/getHandleGetLeagueByIdService.php'; -require __DIR__.'/ContainerKNyDmfm/getHandleGetAllLeaguesService.php'; -require __DIR__.'/ContainerKNyDmfm/getHandleDeclineJoinLeagueRequestService.php'; -require __DIR__.'/ContainerKNyDmfm/getHandleCreateLeagueService.php'; -require __DIR__.'/ContainerKNyDmfm/getHandleAcceptJoinLeagueRequestService.php'; -require __DIR__.'/ContainerKNyDmfm/getNotificationFactoryService.php'; -require __DIR__.'/ContainerKNyDmfm/getEmailSenderService.php'; -require __DIR__.'/ContainerKNyDmfm/getAuthorizeRequestService.php'; -require __DIR__.'/ContainerKNyDmfm/getUserRepositoryService.php'; -require __DIR__.'/ContainerKNyDmfm/getTeamRepositoryService.php'; -require __DIR__.'/ContainerKNyDmfm/getSeasonRepositoryService.php'; -require __DIR__.'/ContainerKNyDmfm/getSeasonDataRepositoryService.php'; -require __DIR__.'/ContainerKNyDmfm/getPlayerRepositoryService.php'; -require __DIR__.'/ContainerKNyDmfm/getNotificationRepositoryService.php'; -require __DIR__.'/ContainerKNyDmfm/getLogRepositoryService.php'; -require __DIR__.'/ContainerKNyDmfm/getLeagueRepositoryService.php'; -require __DIR__.'/ContainerKNyDmfm/getGameRepositoryService.php'; -require __DIR__.'/ContainerKNyDmfm/getFileRepositoryService.php'; -require __DIR__.'/ContainerKNyDmfm/getFacilityRepositoryService.php'; -require __DIR__.'/ContainerKNyDmfm/getCustomRoleRepositoryService.php'; -require __DIR__.'/ContainerKNyDmfm/getExceptionListenerService.php'; -require __DIR__.'/ContainerKNyDmfm/getUserControllerService.php'; -require __DIR__.'/ContainerKNyDmfm/getSeasonControllerService.php'; -require __DIR__.'/ContainerKNyDmfm/getNotificationControllerService.php'; -require __DIR__.'/ContainerKNyDmfm/getLeagueControllerService.php'; -require __DIR__.'/ContainerKNyDmfm/get_ServiceLocator_Y4Zrx_Service.php'; -require __DIR__.'/ContainerKNyDmfm/get_ServiceLocator_K8rLaojService.php'; -require __DIR__.'/ContainerKNyDmfm/get_ServiceLocator_JzhWNcbService.php'; -require __DIR__.'/ContainerKNyDmfm/get_ServiceLocator_IdpQYdIService.php'; -require __DIR__.'/ContainerKNyDmfm/get_ServiceLocator_HAmcZCCService.php'; -require __DIR__.'/ContainerKNyDmfm/get_ServiceLocator_YUfsgoAService.php'; -require __DIR__.'/ContainerKNyDmfm/get_ServiceLocator_X_XUSKjService.php'; -require __DIR__.'/ContainerKNyDmfm/get_ServiceLocator_UgMf8_IService.php'; -require __DIR__.'/ContainerKNyDmfm/get_ServiceLocator_RQy_OTOService.php'; -require __DIR__.'/ContainerKNyDmfm/get_ServiceLocator_PJHysgXService.php'; -require __DIR__.'/ContainerKNyDmfm/get_ServiceLocator_O2p6Lk7Service.php'; -require __DIR__.'/ContainerKNyDmfm/get_ServiceLocator_Jf7ZX1MService.php'; -require __DIR__.'/ContainerKNyDmfm/get_ServiceLocator_I7OeIahService.php'; -require __DIR__.'/ContainerKNyDmfm/get_ServiceLocator_GqgSDnyService.php'; -require __DIR__.'/ContainerKNyDmfm/get_ServiceLocator_G1XuiGsService.php'; -require __DIR__.'/ContainerKNyDmfm/get_ServiceLocator_FoktWoUService.php'; -require __DIR__.'/ContainerKNyDmfm/get_ServiceLocator_EAMCOjqService.php'; -require __DIR__.'/ContainerKNyDmfm/get_ServiceLocator_BpNZAIPService.php'; -require __DIR__.'/ContainerKNyDmfm/get_ServiceLocator_8eLXVuLService.php'; -require __DIR__.'/ContainerKNyDmfm/get_Security_RequestMatcher_Vhy2oy3Service.php'; -require __DIR__.'/ContainerKNyDmfm/get_Security_RequestMatcher_KLbKLHaService.php'; -require __DIR__.'/ContainerKNyDmfm/get_Security_RequestMatcher_0QxrXJtService.php'; -require __DIR__.'/ContainerKNyDmfm/get_Debug_ValueResolver_Security_UserValueResolverService.php'; -require __DIR__.'/ContainerKNyDmfm/get_Debug_ValueResolver_Security_SecurityTokenValueResolverService.php'; -require __DIR__.'/ContainerKNyDmfm/get_Debug_ValueResolver_Doctrine_Orm_EntityValueResolverService.php'; -require __DIR__.'/ContainerKNyDmfm/get_Debug_ValueResolver_ArgumentResolver_VariadicService.php'; -require __DIR__.'/ContainerKNyDmfm/get_Debug_ValueResolver_ArgumentResolver_SessionService.php'; -require __DIR__.'/ContainerKNyDmfm/get_Debug_ValueResolver_ArgumentResolver_ServiceService.php'; -require __DIR__.'/ContainerKNyDmfm/get_Debug_ValueResolver_ArgumentResolver_RequestPayloadService.php'; -require __DIR__.'/ContainerKNyDmfm/get_Debug_ValueResolver_ArgumentResolver_RequestAttributeService.php'; -require __DIR__.'/ContainerKNyDmfm/get_Debug_ValueResolver_ArgumentResolver_RequestService.php'; -require __DIR__.'/ContainerKNyDmfm/get_Debug_ValueResolver_ArgumentResolver_QueryParameterValueResolverService.php'; -require __DIR__.'/ContainerKNyDmfm/get_Debug_ValueResolver_ArgumentResolver_NotTaggedControllerService.php'; -require __DIR__.'/ContainerKNyDmfm/get_Debug_ValueResolver_ArgumentResolver_DefaultService.php'; -require __DIR__.'/ContainerKNyDmfm/get_Debug_ValueResolver_ArgumentResolver_DatetimeService.php'; -require __DIR__.'/ContainerKNyDmfm/get_Debug_ValueResolver_ArgumentResolver_BackedEnumResolverService.php'; -require __DIR__.'/ContainerKNyDmfm/get_Debug_Security_Voter_Security_Access_SimpleRoleVoterService.php'; -require __DIR__.'/ContainerKNyDmfm/get_Debug_Security_Voter_Security_Access_AuthenticatedVoterService.php'; +(require __DIR__.'/DMD_LaLigaApi_KernelDevDebugContainer.php')->set(\ContainerXJAXgNH\DMD_LaLigaApi_KernelDevDebugContainer::class, null); +require __DIR__.'/ContainerXJAXgNH/EntityManagerGhostAd02211.php'; +require __DIR__.'/ContainerXJAXgNH/RequestPayloadValueResolverGhostE4c6c7a.php'; +require __DIR__.'/ContainerXJAXgNH/getValidator_WhenService.php'; +require __DIR__.'/ContainerXJAXgNH/getValidator_NotCompromisedPasswordService.php'; +require __DIR__.'/ContainerXJAXgNH/getValidator_NoSuspiciousCharactersService.php'; +require __DIR__.'/ContainerXJAXgNH/getValidator_ExpressionService.php'; +require __DIR__.'/ContainerXJAXgNH/getValidator_EmailService.php'; +require __DIR__.'/ContainerXJAXgNH/getValidator_BuilderService.php'; +require __DIR__.'/ContainerXJAXgNH/getValidatorService.php'; +require __DIR__.'/ContainerXJAXgNH/getTwig_Runtime_SecurityCsrfService.php'; +require __DIR__.'/ContainerXJAXgNH/getTwig_Runtime_HttpkernelService.php'; +require __DIR__.'/ContainerXJAXgNH/getTwig_Mailer_MessageListenerService.php'; +require __DIR__.'/ContainerXJAXgNH/getTwigService.php'; +require __DIR__.'/ContainerXJAXgNH/getSession_Handler_NativeService.php'; +require __DIR__.'/ContainerXJAXgNH/getSession_FactoryService.php'; +require __DIR__.'/ContainerXJAXgNH/getServicesResetterService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Validator_UserPasswordService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_UserPasswordHasherService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_UserCheckerService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_User_Provider_Concrete_AppUserProviderService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_PasswordHasherFactoryService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Logout_Listener_CsrfTokenClearingService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Listener_UserProviderService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Listener_UserChecker_MainService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Listener_UserChecker_LoginService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Listener_UserChecker_ApiService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Listener_Session_MainService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Listener_PasswordMigratingService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Listener_Main_UserProviderService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Listener_CsrfProtectionService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Listener_CheckAuthenticatorCredentialsService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_HttpUtilsService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_HelperService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Firewall_Map_Context_MainService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Firewall_Map_Context_LoginService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Firewall_Map_Context_DevService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Firewall_Map_Context_ApiService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Firewall_EventDispatcherLocatorService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Csrf_TokenStorageService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Csrf_TokenManagerService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_ChannelListenerService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Authenticator_ManagersLocatorService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Authenticator_Manager_MainService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Authenticator_Manager_LoginService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Authenticator_Manager_ApiService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Authenticator_Jwt_ApiService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_Authenticator_JsonLogin_LoginService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_AccessMapService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecurity_AccessListenerService.php'; +require __DIR__.'/ContainerXJAXgNH/getSecrets_VaultService.php'; +require __DIR__.'/ContainerXJAXgNH/getRouting_LoaderService.php'; +require __DIR__.'/ContainerXJAXgNH/getPropertyInfoService.php'; +require __DIR__.'/ContainerXJAXgNH/getNelmioApiDoc_Routes_DefaultService.php'; +require __DIR__.'/ContainerXJAXgNH/getNelmioApiDoc_RenderDocsService.php'; +require __DIR__.'/ContainerXJAXgNH/getNelmioApiDoc_ModelDescribers_ObjectService.php'; +require __DIR__.'/ContainerXJAXgNH/getNelmioApiDoc_Generator_DefaultService.php'; +require __DIR__.'/ContainerXJAXgNH/getNelmioApiDoc_Describers_Route_DefaultService.php'; +require __DIR__.'/ContainerXJAXgNH/getNelmioApiDoc_Describers_OpenapiPhp_DefaultService.php'; +require __DIR__.'/ContainerXJAXgNH/getNelmioApiDoc_Describers_ConfigService.php'; +require __DIR__.'/ContainerXJAXgNH/getNelmioApiDoc_Controller_SwaggerYamlService.php'; +require __DIR__.'/ContainerXJAXgNH/getNelmioApiDoc_Controller_SwaggerJsonService.php'; +require __DIR__.'/ContainerXJAXgNH/getMailer_TransportsService.php'; +require __DIR__.'/ContainerXJAXgNH/getMailer_TransportFactory_SmtpService.php'; +require __DIR__.'/ContainerXJAXgNH/getMailer_TransportFactory_SendmailService.php'; +require __DIR__.'/ContainerXJAXgNH/getMailer_TransportFactory_NullService.php'; +require __DIR__.'/ContainerXJAXgNH/getMailer_TransportFactory_NativeService.php'; +require __DIR__.'/ContainerXJAXgNH/getMailer_MailerService.php'; +require __DIR__.'/ContainerXJAXgNH/getLexikJwtAuthentication_KeyLoaderService.php'; +require __DIR__.'/ContainerXJAXgNH/getLexikJwtAuthentication_JwtManagerService.php'; +require __DIR__.'/ContainerXJAXgNH/getLexikJwtAuthentication_EncoderService.php'; +require __DIR__.'/ContainerXJAXgNH/getFragment_Renderer_InlineService.php'; +require __DIR__.'/ContainerXJAXgNH/getErrorControllerService.php'; +require __DIR__.'/ContainerXJAXgNH/getDoctrine_UuidGeneratorService.php'; +require __DIR__.'/ContainerXJAXgNH/getDoctrine_UlidGeneratorService.php'; +require __DIR__.'/ContainerXJAXgNH/getDoctrine_Orm_Validator_UniqueService.php'; +require __DIR__.'/ContainerXJAXgNH/getDoctrine_Orm_Listeners_PdoSessionHandlerSchemaListenerService.php'; +require __DIR__.'/ContainerXJAXgNH/getDoctrine_Orm_Listeners_LockStoreSchemaListenerService.php'; +require __DIR__.'/ContainerXJAXgNH/getDoctrine_Orm_Listeners_DoctrineTokenProviderSchemaListenerService.php'; +require __DIR__.'/ContainerXJAXgNH/getDoctrine_Orm_Listeners_DoctrineDbalCacheAdapterSchemaListenerService.php'; +require __DIR__.'/ContainerXJAXgNH/getDoctrine_Orm_DefaultListeners_AttachEntityListenersService.php'; +require __DIR__.'/ContainerXJAXgNH/getDoctrine_Orm_DefaultEntityManager_PropertyInfoExtractorService.php'; +require __DIR__.'/ContainerXJAXgNH/getDoctrine_Orm_DefaultEntityManagerService.php'; +require __DIR__.'/ContainerXJAXgNH/getDoctrine_Dbal_DefaultConnection_EventManagerService.php'; +require __DIR__.'/ContainerXJAXgNH/getDoctrine_Dbal_DefaultConnectionService.php'; +require __DIR__.'/ContainerXJAXgNH/getDoctrineService.php'; +require __DIR__.'/ContainerXJAXgNH/getDebug_Security_Voter_VoteListenerService.php'; +require __DIR__.'/ContainerXJAXgNH/getDebug_Security_Firewall_Authenticator_MainService.php'; +require __DIR__.'/ContainerXJAXgNH/getDebug_Security_Firewall_Authenticator_LoginService.php'; +require __DIR__.'/ContainerXJAXgNH/getDebug_Security_Firewall_Authenticator_ApiService.php'; +require __DIR__.'/ContainerXJAXgNH/getDebug_Security_EventDispatcher_LoginService.php'; +require __DIR__.'/ContainerXJAXgNH/getDebug_Security_EventDispatcher_ApiService.php'; +require __DIR__.'/ContainerXJAXgNH/getDebug_ErrorHandlerConfiguratorService.php'; +require __DIR__.'/ContainerXJAXgNH/getController_TemplateAttributeListenerService.php'; +require __DIR__.'/ContainerXJAXgNH/getContainer_GetRoutingConditionServiceService.php'; +require __DIR__.'/ContainerXJAXgNH/getContainer_EnvVarProcessorsLocatorService.php'; +require __DIR__.'/ContainerXJAXgNH/getContainer_EnvVarProcessorService.php'; +require __DIR__.'/ContainerXJAXgNH/getCache_ValidatorExpressionLanguageService.php'; +require __DIR__.'/ContainerXJAXgNH/getCache_SystemClearerService.php'; +require __DIR__.'/ContainerXJAXgNH/getCache_SystemService.php'; +require __DIR__.'/ContainerXJAXgNH/getCache_SecurityIsGrantedAttributeExpressionLanguageService.php'; +require __DIR__.'/ContainerXJAXgNH/getCache_GlobalClearerService.php'; +require __DIR__.'/ContainerXJAXgNH/getCache_AppClearerService.php'; +require __DIR__.'/ContainerXJAXgNH/getCache_AppService.php'; +require __DIR__.'/ContainerXJAXgNH/getTemplateControllerService.php'; +require __DIR__.'/ContainerXJAXgNH/getRedirectControllerService.php'; +require __DIR__.'/ContainerXJAXgNH/getHandleUpdateUserService.php'; +require __DIR__.'/ContainerXJAXgNH/getHandleRegistrationService.php'; +require __DIR__.'/ContainerXJAXgNH/getHandleGetNotificationsService.php'; +require __DIR__.'/ContainerXJAXgNH/getHandleDeleteUserService.php'; +require __DIR__.'/ContainerXJAXgNH/getUserSaverService.php'; +require __DIR__.'/ContainerXJAXgNH/getHandleCreateSeasonService.php'; +require __DIR__.'/ContainerXJAXgNH/getHandleCreateGameCalendarRequestService.php'; +require __DIR__.'/ContainerXJAXgNH/getHandleAddTeamService.php'; +require __DIR__.'/ContainerXJAXgNH/getHandleUpdateLeagueService.php'; +require __DIR__.'/ContainerXJAXgNH/getHandleNewJoinLeagueRequestService.php'; +require __DIR__.'/ContainerXJAXgNH/getHandleCaptainRequestService.php'; +require __DIR__.'/ContainerXJAXgNH/getHandleGetLeagueByIdService.php'; +require __DIR__.'/ContainerXJAXgNH/getHandleGetAllLeaguesService.php'; +require __DIR__.'/ContainerXJAXgNH/getHandleDeclineJoinLeagueRequestService.php'; +require __DIR__.'/ContainerXJAXgNH/getHandleCreateLeagueService.php'; +require __DIR__.'/ContainerXJAXgNH/getHandleAcceptJoinLeagueRequestService.php'; +require __DIR__.'/ContainerXJAXgNH/getNotificationFactoryService.php'; +require __DIR__.'/ContainerXJAXgNH/getEmailSenderService.php'; +require __DIR__.'/ContainerXJAXgNH/getAuthorizeRequestService.php'; +require __DIR__.'/ContainerXJAXgNH/getUserRepositoryService.php'; +require __DIR__.'/ContainerXJAXgNH/getTeamRepositoryService.php'; +require __DIR__.'/ContainerXJAXgNH/getSeasonRepositoryService.php'; +require __DIR__.'/ContainerXJAXgNH/getSeasonDataRepositoryService.php'; +require __DIR__.'/ContainerXJAXgNH/getPlayerRepositoryService.php'; +require __DIR__.'/ContainerXJAXgNH/getNotificationRepositoryService.php'; +require __DIR__.'/ContainerXJAXgNH/getLogRepositoryService.php'; +require __DIR__.'/ContainerXJAXgNH/getLeagueRepositoryService.php'; +require __DIR__.'/ContainerXJAXgNH/getGameRepositoryService.php'; +require __DIR__.'/ContainerXJAXgNH/getFileRepositoryService.php'; +require __DIR__.'/ContainerXJAXgNH/getFacilityRepositoryService.php'; +require __DIR__.'/ContainerXJAXgNH/getCustomRoleRepositoryService.php'; +require __DIR__.'/ContainerXJAXgNH/getExceptionListenerService.php'; +require __DIR__.'/ContainerXJAXgNH/getUserControllerService.php'; +require __DIR__.'/ContainerXJAXgNH/getSeasonControllerService.php'; +require __DIR__.'/ContainerXJAXgNH/getNotificationControllerService.php'; +require __DIR__.'/ContainerXJAXgNH/getLeagueControllerService.php'; +require __DIR__.'/ContainerXJAXgNH/get_ServiceLocator_Y4Zrx_Service.php'; +require __DIR__.'/ContainerXJAXgNH/get_ServiceLocator_K8rLaojService.php'; +require __DIR__.'/ContainerXJAXgNH/get_ServiceLocator_JzhWNcbService.php'; +require __DIR__.'/ContainerXJAXgNH/get_ServiceLocator_IdpQYdIService.php'; +require __DIR__.'/ContainerXJAXgNH/get_ServiceLocator_HAmcZCCService.php'; +require __DIR__.'/ContainerXJAXgNH/get_ServiceLocator_YUfsgoAService.php'; +require __DIR__.'/ContainerXJAXgNH/get_ServiceLocator_X_XUSKjService.php'; +require __DIR__.'/ContainerXJAXgNH/get_ServiceLocator_UgMf8_IService.php'; +require __DIR__.'/ContainerXJAXgNH/get_ServiceLocator_RQy_OTOService.php'; +require __DIR__.'/ContainerXJAXgNH/get_ServiceLocator_PJHysgXService.php'; +require __DIR__.'/ContainerXJAXgNH/get_ServiceLocator_O2p6Lk7Service.php'; +require __DIR__.'/ContainerXJAXgNH/get_ServiceLocator_Jf7ZX1MService.php'; +require __DIR__.'/ContainerXJAXgNH/get_ServiceLocator_I7OeIahService.php'; +require __DIR__.'/ContainerXJAXgNH/get_ServiceLocator_GqgSDnyService.php'; +require __DIR__.'/ContainerXJAXgNH/get_ServiceLocator_G1XuiGsService.php'; +require __DIR__.'/ContainerXJAXgNH/get_ServiceLocator_FoktWoUService.php'; +require __DIR__.'/ContainerXJAXgNH/get_ServiceLocator_EAMCOjqService.php'; +require __DIR__.'/ContainerXJAXgNH/get_ServiceLocator_BpNZAIPService.php'; +require __DIR__.'/ContainerXJAXgNH/get_ServiceLocator_8eLXVuLService.php'; +require __DIR__.'/ContainerXJAXgNH/get_Security_RequestMatcher_Vhy2oy3Service.php'; +require __DIR__.'/ContainerXJAXgNH/get_Security_RequestMatcher_KLbKLHaService.php'; +require __DIR__.'/ContainerXJAXgNH/get_Security_RequestMatcher_0QxrXJtService.php'; +require __DIR__.'/ContainerXJAXgNH/get_Debug_ValueResolver_Security_UserValueResolverService.php'; +require __DIR__.'/ContainerXJAXgNH/get_Debug_ValueResolver_Security_SecurityTokenValueResolverService.php'; +require __DIR__.'/ContainerXJAXgNH/get_Debug_ValueResolver_Doctrine_Orm_EntityValueResolverService.php'; +require __DIR__.'/ContainerXJAXgNH/get_Debug_ValueResolver_ArgumentResolver_VariadicService.php'; +require __DIR__.'/ContainerXJAXgNH/get_Debug_ValueResolver_ArgumentResolver_SessionService.php'; +require __DIR__.'/ContainerXJAXgNH/get_Debug_ValueResolver_ArgumentResolver_ServiceService.php'; +require __DIR__.'/ContainerXJAXgNH/get_Debug_ValueResolver_ArgumentResolver_RequestPayloadService.php'; +require __DIR__.'/ContainerXJAXgNH/get_Debug_ValueResolver_ArgumentResolver_RequestAttributeService.php'; +require __DIR__.'/ContainerXJAXgNH/get_Debug_ValueResolver_ArgumentResolver_RequestService.php'; +require __DIR__.'/ContainerXJAXgNH/get_Debug_ValueResolver_ArgumentResolver_QueryParameterValueResolverService.php'; +require __DIR__.'/ContainerXJAXgNH/get_Debug_ValueResolver_ArgumentResolver_NotTaggedControllerService.php'; +require __DIR__.'/ContainerXJAXgNH/get_Debug_ValueResolver_ArgumentResolver_DefaultService.php'; +require __DIR__.'/ContainerXJAXgNH/get_Debug_ValueResolver_ArgumentResolver_DatetimeService.php'; +require __DIR__.'/ContainerXJAXgNH/get_Debug_ValueResolver_ArgumentResolver_BackedEnumResolverService.php'; +require __DIR__.'/ContainerXJAXgNH/get_Debug_Security_Voter_Security_Access_SimpleRoleVoterService.php'; +require __DIR__.'/ContainerXJAXgNH/get_Debug_Security_Voter_Security_Access_AuthenticatedVoterService.php'; $classes = []; $classes[] = 'Symfony\Bundle\FrameworkBundle\FrameworkBundle'; @@ -514,8 +514,3 @@ $classes[] = 'Symfony\Component\Validator\Constraints\NotCompromisedPasswordVali $classes[] = 'Symfony\Component\Validator\Constraints\WhenValidator'; $preloaded = Preloader::preload($classes); - -$classes = []; -$classes[] = 'Symfony\\Component\\Routing\\Generator\\CompiledUrlGenerator'; -$classes[] = 'Symfony\\Bundle\\FrameworkBundle\\Routing\\RedirectableCompiledUrlMatcher'; -$preloaded = Preloader::preload($classes, $preloaded); diff --git a/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.xml b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.xml index 0f8320f4..a443b57b 100644 --- a/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.xml +++ b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.xml @@ -5,8 +5,8 @@ dev %env(default:kernel.environment:APP_RUNTIME_ENV)% true - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\log Symfony\Bundle\FrameworkBundle\FrameworkBundle @@ -87,12 +87,12 @@ error_controller %env(default::SYMFONY_IDE)% -1 - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.xml + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev/DMD_LaLigaApi_KernelDevDebugContainer.xml localhost http kernel::loadRoutes - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev 80 443 _D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd.DMD_LaLigaApi_KernelDevDebugContainer @@ -106,7 +106,7 @@ null 0 - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev/validation.php + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev/validation.php validators Doctrine\DBAL\Configuration @@ -173,7 +173,7 @@ Doctrine\ORM\Cache\RegionsConfiguration true true - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev/doctrine/orm/Proxies + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev/doctrine/orm/Proxies Proxies null null @@ -359,6 +359,7 @@ + @@ -369,6 +370,12 @@ + + + + + + @@ -580,7 +587,7 @@ - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev/http_cache + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev/http_cache @@ -590,7 +597,7 @@ true - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainerDeprecations.log + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev/DMD_LaLigaApi_KernelDevDebugContainerDeprecations.log @@ -1140,7 +1147,7 @@ NaLhWLN+Xk 0 - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev/pools/app + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev/pools/app @@ -1156,7 +1163,7 @@ +4VOWgVa18 0 %container.build_id% - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev/pools/system + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev/pools/system @@ -1166,7 +1173,7 @@ j2sN4zNQ59 0 %container.build_id% - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev/pools/system + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev/pools/system @@ -1176,7 +1183,7 @@ +rU4M4my5e 0 %container.build_id% - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev/pools/system + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev/pools/system @@ -1186,7 +1193,7 @@ ufZVp9sj4F 0 %container.build_id% - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev/pools/system + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev/pools/system @@ -1196,7 +1203,7 @@ EeU3VyYLaZ 0 %container.build_id% - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev/pools/system + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev/pools/system @@ -1206,7 +1213,7 @@ 0 %container.build_id% - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev/pools/system + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev/pools/system @@ -1225,7 +1232,7 @@ 0 - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev/pools/app + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev/pools/app @@ -1933,7 +1940,7 @@ kernel::loadRoutes - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev true Symfony\Component\Routing\Generator\CompiledUrlGenerator Symfony\Component\Routing\Generator\Dumper\CompiledUrlGeneratorDumper @@ -2090,7 +2097,7 @@ true - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev/sessions + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev/sessions MOCKSESSID @@ -2174,10 +2181,10 @@ - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev/validation.php + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev/validation.php - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev/validation.php + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev/validation.php @@ -2440,7 +2447,7 @@ njivdr+jA5 0 %container.build_id% - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev/pools/system + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev/pools/system @@ -2863,7 +2870,7 @@ - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev/doctrine/orm/Proxies + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev/doctrine/orm/Proxies Proxies @@ -3456,7 +3463,7 @@ bGaDcByRmx 0 %container.build_id% - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev/pools/system + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev/pools/system @@ -3472,7 +3479,7 @@ 7-WF8WwGVY 0 %container.build_id% - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev/pools/system + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev/pools/system @@ -4446,7 +4453,7 @@ name - D:/My Stuff/DEVELOPMENT/LaLiga/LaLiga-BackEnd/var/cache/dev/twig + D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\var\cache\dev/twig UTF-8 true true diff --git a/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.xml.meta b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.xml.meta index 5970e317..9eb5b317 100644 Binary files a/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.xml.meta and b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.xml.meta differ diff --git a/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainerCompiler.log b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainerCompiler.log index 2ec80c49..29f403b8 100644 --- a/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainerCompiler.log +++ b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainerCompiler.log @@ -495,6 +495,8 @@ Symfony\Component\DependencyInjection\Compiler\RemoveUnusedDefinitionsPass: Remo Symfony\Component\DependencyInjection\Compiler\RemoveUnusedDefinitionsPass: Removed service "DMD\LaLigaApi\Enum\NotificationType"; reason: unused. Symfony\Component\DependencyInjection\Compiler\RemoveUnusedDefinitionsPass: Removed service "DMD\LaLigaApi\Enum\Role"; reason: unused. Symfony\Component\DependencyInjection\Compiler\RemoveUnusedDefinitionsPass: Removed service "DMD\LaLigaApi\Exception\ValidationException"; reason: unused. +Symfony\Component\DependencyInjection\Compiler\RemoveUnusedDefinitionsPass: Removed service "DMD\LaLigaApi\Service\League\FacilityFactory"; reason: unused. +Symfony\Component\DependencyInjection\Compiler\RemoveUnusedDefinitionsPass: Removed service "DMD\LaLigaApi\Service\League\createFacilities\HandleCreateFacilities"; reason: unused. Symfony\Component\DependencyInjection\Compiler\RemoveUnusedDefinitionsPass: Removed service "DMD\LaLigaApi\Service\Season\getAllSeasons\HandleGetAllSeason"; reason: unused. Symfony\Component\DependencyInjection\Compiler\RemoveUnusedDefinitionsPass: Removed service "DMD\LaLigaApi\Service\Season\getSeasonById\HandleGetSeasonById"; reason: unused. Symfony\Component\DependencyInjection\Compiler\RemoveUnusedDefinitionsPass: Removed service "DMD\LaLigaApi\Service\Season\updateSeason\HandleUpdateSeason"; reason: unused. diff --git a/var/cache/dev/url_matching_routes.php.meta b/var/cache/dev/url_matching_routes.php.meta index 3574910b..168b169a 100644 Binary files a/var/cache/dev/url_matching_routes.php.meta and b/var/cache/dev/url_matching_routes.php.meta differ