diff --git a/config/packages/doctrine.yaml b/config/packages/doctrine.yaml
index 844e82e4..c6603ebe 100644
--- a/config/packages/doctrine.yaml
+++ b/config/packages/doctrine.yaml
@@ -1,8 +1,8 @@
doctrine:
dbal:
# url: '%env(resolve:DATABASE_URL)%'
- url: 'mysql://mamb:lakers06@casa.dyb-tech.com:3306/laliga?serverVersion=10.5.22-MariaDB&charset=utf8mb4'
-# url: 'mysql://root:root@localhost:3307/la_liga?serverVersion=7.4.16&charset=utf8mb4'
+# url: 'mysql://mamb:lakers06@casa.dyb-tech.com:3306/laliga?serverVersion=10.5.22-MariaDB&charset=utf8mb4'
+ url: 'mysql://root:root@localhost:3307/la_liga?serverVersion=7.4.16&charset=utf8mb4'
# IMPORTANT: You MUST configure your server version,
# either here or in the DATABASE_URL env var (see .env file)
#server_version: '15'
diff --git a/config/packages/lexik_jwt_authentication.yaml b/config/packages/lexik_jwt_authentication.yaml
index d9d83adf..c3b38ed3 100644
--- a/config/packages/lexik_jwt_authentication.yaml
+++ b/config/packages/lexik_jwt_authentication.yaml
@@ -2,4 +2,4 @@ lexik_jwt_authentication:
secret_key: '%env(resolve:JWT_SECRET_KEY)%'
public_key: '%env(resolve:JWT_PUBLIC_KEY)%'
pass_phrase: '%env(JWT_PASSPHRASE)%'
- token_ttl: 1800
+ token_ttl: 18000
diff --git a/src/Dto/FacilityDto.php b/src/Dto/FacilityDto.php
index e266561a..5cccff0e 100644
--- a/src/Dto/FacilityDto.php
+++ b/src/Dto/FacilityDto.php
@@ -18,7 +18,7 @@ class FacilityDto
public \DateTimeImmutable $createdAt;
public array $validationErrors;
- public function createFacilityArray(): array
+ public function toArray(): array
{
return [
'id' => $this->id ?? '',
diff --git a/src/Dto/GameDto.php b/src/Dto/GameDto.php
index f9c84f12..104e10b4 100644
--- a/src/Dto/GameDto.php
+++ b/src/Dto/GameDto.php
@@ -32,7 +32,7 @@ class GameDto
'gameDateTime' => !empty($this->gameDateTime) ? $this->gameDateTime->format('Y-m-d H:i:s') : null,
'season' => $this->seasonDto->createSeasonArray() ?? [],
'notes' => $this->notes ?? null,
- 'facility' => $this->facilityDto->createFacilityArray() ?? [],
+ 'facility' => $this->facilityDto->toArray() ?? [],
'pointsHome' => $this->pointsHome ?? 0,
'pointsAway' => $this->pointsAway ?? 0,
'createdAt' => !empty($this->createdAt) ? $this->createdAt->format('Y-m-d H:i:s') : null,
diff --git a/src/Service/Common/FacilityFactory.php b/src/Service/Common/FacilityFactory.php
index 3a8467e7..8a3f9b50 100644
--- a/src/Service/Common/FacilityFactory.php
+++ b/src/Service/Common/FacilityFactory.php
@@ -16,7 +16,7 @@ class FacilityFactory
}
if (!empty($facilityDto->address))
{
- $facilityEntity->setName($facilityDto->address);
+ $facilityEntity->setAddress($facilityDto->address);
}
if (!empty($facilityDto->availableHourList))
{
diff --git a/src/Service/Season/createFacilities/HandleCreateFacilities.php b/src/Service/Season/createFacilities/HandleCreateFacilities.php
index 896b2d58..6a6bbced 100644
--- a/src/Service/Season/createFacilities/HandleCreateFacilities.php
+++ b/src/Service/Season/createFacilities/HandleCreateFacilities.php
@@ -44,7 +44,7 @@ class HandleCreateFacilities
{
throw new HttpException(Response::HTTP_NOT_FOUND, 'Season not found, check id.');
}
- $facilityDtoList = [];
+ $facilityEntityList = [];
foreach ($request->toArray() as $facilityItem)
{
$facilityDto = new FacilityDto();
@@ -53,13 +53,20 @@ class HandleCreateFacilities
$facilityEntity = $this->facilityFactory::create($facilityDto);
$facilityEntity->setSeason($seasonEntity);
$this->entityManager->persist($facilityEntity);
- $facilityDtoList[] = $facilityDto->createFacilityArray();
+ $facilityEntityList[] = $facilityEntity;
}
$this->entityManager->flush();
+ $facilityResponseArray = [];
+ foreach ($facilityEntityList as $facilityEntity)
+ {
+ $facilityDto = new FacilityDto();
+ $facilityDto->fillFromObject($facilityEntity);
+ $facilityResponseArray[] = $facilityDto->toArray();
+ }
return new JsonResponse(
data: [
'success' => true,
- 'facilities' => $facilityDtoList
+ 'facilities' => $facilityResponseArray
],
status: Response::HTTP_OK
);
diff --git a/src/Service/Season/getAllFacilities/HandleGetAllFacilities.php b/src/Service/Season/getAllFacilities/HandleGetAllFacilities.php
index 576c7b82..fdc240c5 100644
--- a/src/Service/Season/getAllFacilities/HandleGetAllFacilities.php
+++ b/src/Service/Season/getAllFacilities/HandleGetAllFacilities.php
@@ -41,7 +41,7 @@ class HandleGetAllFacilities
{
$facilityDto = new FacilityDto();
$facilityDto->fillFromObject($facilityObj);
- $facilityArray[] = $facilityDto->createFacilityArray();
+ $facilityArray[] = $facilityDto->toArray();
}
}
return new JsonResponse(
diff --git a/src/Service/User/Handlers/login/AuthenticationSuccessListener.php b/src/Service/User/Handlers/login/AuthenticationSuccessListener.php
index 996937d3..d8c7cb1f 100644
--- a/src/Service/User/Handlers/login/AuthenticationSuccessListener.php
+++ b/src/Service/User/Handlers/login/AuthenticationSuccessListener.php
@@ -33,7 +33,7 @@ class AuthenticationSuccessListener
}
$userDto->receivedNotificationDtoList = $notificationDtoList;
$userDto->fillFromObject($user);
- $expirationDateTime = (new \DateTime('now', new \DateTimeZone('Europe/Madrid')))->modify('+1800 seconds');
+ $expirationDateTime = (new \DateTime('now', new \DateTimeZone('Europe/Madrid')))->modify('+18000 seconds');
$data['expirationDateTime'] = $expirationDateTime->format('Y-m-d H:i:s');
$data['user'] = $userDto->toLoginArray();
diff --git a/var/cache/dev/ContainerEXZktqY.legacy b/var/cache/dev/ContainerBNoZEh4.legacy
similarity index 100%
rename from var/cache/dev/ContainerEXZktqY.legacy
rename to var/cache/dev/ContainerBNoZEh4.legacy
diff --git a/var/cache/dev/ContainerEXZktqY/DMD_LaLigaApi_KernelDevDebugContainer.php b/var/cache/dev/ContainerBNoZEh4/DMD_LaLigaApi_KernelDevDebugContainer.php
similarity index 99%
rename from var/cache/dev/ContainerEXZktqY/DMD_LaLigaApi_KernelDevDebugContainer.php
rename to var/cache/dev/ContainerBNoZEh4/DMD_LaLigaApi_KernelDevDebugContainer.php
index 56ff89ac..04b2c1a3 100644
--- a/var/cache/dev/ContainerEXZktqY/DMD_LaLigaApi_KernelDevDebugContainer.php
+++ b/var/cache/dev/ContainerBNoZEh4/DMD_LaLigaApi_KernelDevDebugContainer.php
@@ -1,6 +1,6 @@
privates['DMD\\LaLigaApi\\Service\\Season\\createFacilities\\HandleCreateFacilities'] = new \DMD\LaLigaApi\Service\Season\createFacilities\HandleCreateFacilities(($container->privates['DMD\\LaLigaApi\\Service\\Common\\AuthorizeRequest'] ?? $container->load('getAuthorizeRequestService')), new \DMD\LaLigaApi\Service\Common\FacilityFactory(), ($container->services['doctrine.orm.default_entity_manager'] ?? $container->load('getDoctrine_Orm_DefaultEntityManagerService')), ($container->privates['security.helper'] ?? $container->load('getSecurity_HelperService')), ($container->privates['DMD\\LaLigaApi\\Repository\\UserRepository'] ?? $container->load('getUserRepositoryService')), ($container->privates['DMD\\LaLigaApi\\Repository\\SeasonRepository'] ?? $container->load('getSeasonRepositoryService')));
+ }
+}
diff --git a/var/cache/dev/ContainerXpGVJqc/getHandleCreateGameCalendarRequestService.php b/var/cache/dev/ContainerBNoZEh4/getHandleCreateGameCalendarRequestService.php
similarity index 98%
rename from var/cache/dev/ContainerXpGVJqc/getHandleCreateGameCalendarRequestService.php
rename to var/cache/dev/ContainerBNoZEh4/getHandleCreateGameCalendarRequestService.php
index a829e04d..f8615154 100644
--- a/var/cache/dev/ContainerXpGVJqc/getHandleCreateGameCalendarRequestService.php
+++ b/var/cache/dev/ContainerBNoZEh4/getHandleCreateGameCalendarRequestService.php
@@ -1,6 +1,6 @@
privates['DMD\\LaLigaApi\\Service\\Season\\getAllFacilities\\HandleGetAllFacilities'] = new \DMD\LaLigaApi\Service\Season\getAllFacilities\HandleGetAllFacilities(($container->services['doctrine.orm.default_entity_manager'] ?? $container->load('getDoctrine_Orm_DefaultEntityManagerService')), ($container->privates['DMD\\LaLigaApi\\Repository\\FacilityRepository'] ?? $container->load('getFacilityRepositoryService')), ($container->privates['DMD\\LaLigaApi\\Repository\\SeasonRepository'] ?? $container->load('getSeasonRepositoryService')));
+ }
+}
diff --git a/var/cache/dev/ContainerEXZktqY/getHandleGetAllLeaguesService.php b/var/cache/dev/ContainerBNoZEh4/getHandleGetAllLeaguesService.php
similarity index 97%
rename from var/cache/dev/ContainerEXZktqY/getHandleGetAllLeaguesService.php
rename to var/cache/dev/ContainerBNoZEh4/getHandleGetAllLeaguesService.php
index 36a6b83a..9cb60988 100644
--- a/var/cache/dev/ContainerEXZktqY/getHandleGetAllLeaguesService.php
+++ b/var/cache/dev/ContainerBNoZEh4/getHandleGetAllLeaguesService.php
@@ -1,6 +1,6 @@
privates['.debug.value_resolver.argument_resolver.not_tagged_controller'] = new \Symfony\Component\HttpKernel\Controller\ArgumentResolver\TraceableValueResolver(new \Symfony\Component\HttpKernel\Controller\ArgumentResolver\NotTaggedControllerValueResolver(($container->privates['.service_locator.I7OeIah'] ?? $container->load('get_ServiceLocator_I7OeIahService'))), ($container->privates['debug.stopwatch'] ??= new \Symfony\Component\Stopwatch\Stopwatch(true)));
+ return $container->privates['.debug.value_resolver.argument_resolver.not_tagged_controller'] = new \Symfony\Component\HttpKernel\Controller\ArgumentResolver\TraceableValueResolver(new \Symfony\Component\HttpKernel\Controller\ArgumentResolver\NotTaggedControllerValueResolver(($container->privates['.service_locator.bNYvrCq'] ?? $container->load('get_ServiceLocator_BNYvrCqService'))), ($container->privates['debug.stopwatch'] ??= new \Symfony\Component\Stopwatch\Stopwatch(true)));
}
}
diff --git a/var/cache/dev/ContainerXpGVJqc/get_Debug_ValueResolver_ArgumentResolver_QueryParameterValueResolverService.php b/var/cache/dev/ContainerBNoZEh4/get_Debug_ValueResolver_ArgumentResolver_QueryParameterValueResolverService.php
similarity index 98%
rename from var/cache/dev/ContainerXpGVJqc/get_Debug_ValueResolver_ArgumentResolver_QueryParameterValueResolverService.php
rename to var/cache/dev/ContainerBNoZEh4/get_Debug_ValueResolver_ArgumentResolver_QueryParameterValueResolverService.php
index c494c72d..85ae2463 100644
--- a/var/cache/dev/ContainerXpGVJqc/get_Debug_ValueResolver_ArgumentResolver_QueryParameterValueResolverService.php
+++ b/var/cache/dev/ContainerBNoZEh4/get_Debug_ValueResolver_ArgumentResolver_QueryParameterValueResolverService.php
@@ -1,6 +1,6 @@
privates['.debug.value_resolver.argument_resolver.service'] = new \Symfony\Component\HttpKernel\Controller\ArgumentResolver\TraceableValueResolver(new \Symfony\Component\HttpKernel\Controller\ArgumentResolver\ServiceValueResolver(($container->privates['.service_locator.I7OeIah'] ?? $container->load('get_ServiceLocator_I7OeIahService'))), ($container->privates['debug.stopwatch'] ??= new \Symfony\Component\Stopwatch\Stopwatch(true)));
+ return $container->privates['.debug.value_resolver.argument_resolver.service'] = new \Symfony\Component\HttpKernel\Controller\ArgumentResolver\TraceableValueResolver(new \Symfony\Component\HttpKernel\Controller\ArgumentResolver\ServiceValueResolver(($container->privates['.service_locator.bNYvrCq'] ?? $container->load('get_ServiceLocator_BNYvrCqService'))), ($container->privates['debug.stopwatch'] ??= new \Symfony\Component\Stopwatch\Stopwatch(true)));
}
}
diff --git a/var/cache/dev/ContainerEXZktqY/get_Debug_ValueResolver_ArgumentResolver_SessionService.php b/var/cache/dev/ContainerBNoZEh4/get_Debug_ValueResolver_ArgumentResolver_SessionService.php
similarity index 98%
rename from var/cache/dev/ContainerEXZktqY/get_Debug_ValueResolver_ArgumentResolver_SessionService.php
rename to var/cache/dev/ContainerBNoZEh4/get_Debug_ValueResolver_ArgumentResolver_SessionService.php
index 138456ff..d7a4c6ca 100644
--- a/var/cache/dev/ContainerEXZktqY/get_Debug_ValueResolver_ArgumentResolver_SessionService.php
+++ b/var/cache/dev/ContainerBNoZEh4/get_Debug_ValueResolver_ArgumentResolver_SessionService.php
@@ -1,6 +1,6 @@
privates['.service_locator.I7OeIah'] = new \Symfony\Component\DependencyInjection\Argument\ServiceLocator($container->getService ??= $container->getService(...), [
+ return $container->privates['.service_locator.bNYvrCq'] = new \Symfony\Component\DependencyInjection\Argument\ServiceLocator($container->getService ??= $container->getService(...), [
'DMD\\LaLigaApi\\Controller\\LeagueController::acceptJoinRequest' => ['privates', '.service_locator.GqgSDny', 'get_ServiceLocator_GqgSDnyService', true],
'DMD\\LaLigaApi\\Controller\\LeagueController::createLeague' => ['privates', '.service_locator.RQy.OTO', 'get_ServiceLocator_RQy_OTOService', true],
'DMD\\LaLigaApi\\Controller\\LeagueController::declineJoinRequest' => ['privates', '.service_locator.G1XuiGs', 'get_ServiceLocator_G1XuiGsService', true],
@@ -31,6 +31,8 @@ class get_ServiceLocator_I7OeIahService extends DMD_LaLigaApi_KernelDevDebugCont
'DMD\\LaLigaApi\\Controller\\SeasonController::addSeason' => ['privates', '.service_locator.PJHysgX', 'get_ServiceLocator_PJHysgXService', true],
'DMD\\LaLigaApi\\Controller\\SeasonController::addTeam' => ['privates', '.service_locator.hAmcZCC', 'get_ServiceLocator_HAmcZCCService', true],
'DMD\\LaLigaApi\\Controller\\SeasonController::createCalendar' => ['privates', '.service_locator.EAMCOjq', 'get_ServiceLocator_EAMCOjqService', true],
+ 'DMD\\LaLigaApi\\Controller\\SeasonController::createFacilities' => ['privates', '.service_locator.Kun9UOk', 'get_ServiceLocator_Kun9UOkService', true],
+ 'DMD\\LaLigaApi\\Controller\\SeasonController::getAllFacilities' => ['privates', '.service_locator.g3NSLSC', 'get_ServiceLocator_G3NSLSCService', true],
'DMD\\LaLigaApi\\Controller\\UserController::changePassword' => ['privates', '.service_locator.jzhWNcb', 'get_ServiceLocator_JzhWNcbService', true],
'DMD\\LaLigaApi\\Controller\\UserController::createUser' => ['privates', '.service_locator.FoktWoU', 'get_ServiceLocator_FoktWoUService', true],
'DMD\\LaLigaApi\\Controller\\UserController::deleteUser' => ['privates', '.service_locator.k8rLaoj', 'get_ServiceLocator_K8rLaojService', true],
@@ -51,6 +53,8 @@ class get_ServiceLocator_I7OeIahService extends DMD_LaLigaApi_KernelDevDebugCont
'DMD\\LaLigaApi\\Controller\\SeasonController:addSeason' => ['privates', '.service_locator.PJHysgX', 'get_ServiceLocator_PJHysgXService', true],
'DMD\\LaLigaApi\\Controller\\SeasonController:addTeam' => ['privates', '.service_locator.hAmcZCC', 'get_ServiceLocator_HAmcZCCService', true],
'DMD\\LaLigaApi\\Controller\\SeasonController:createCalendar' => ['privates', '.service_locator.EAMCOjq', 'get_ServiceLocator_EAMCOjqService', true],
+ 'DMD\\LaLigaApi\\Controller\\SeasonController:createFacilities' => ['privates', '.service_locator.Kun9UOk', 'get_ServiceLocator_Kun9UOkService', true],
+ 'DMD\\LaLigaApi\\Controller\\SeasonController:getAllFacilities' => ['privates', '.service_locator.g3NSLSC', 'get_ServiceLocator_G3NSLSCService', true],
'DMD\\LaLigaApi\\Controller\\UserController:changePassword' => ['privates', '.service_locator.jzhWNcb', 'get_ServiceLocator_JzhWNcbService', true],
'DMD\\LaLigaApi\\Controller\\UserController:createUser' => ['privates', '.service_locator.FoktWoU', 'get_ServiceLocator_FoktWoUService', true],
'DMD\\LaLigaApi\\Controller\\UserController:deleteUser' => ['privates', '.service_locator.k8rLaoj', 'get_ServiceLocator_K8rLaojService', true],
@@ -70,6 +74,8 @@ class get_ServiceLocator_I7OeIahService extends DMD_LaLigaApi_KernelDevDebugCont
'DMD\\LaLigaApi\\Controller\\SeasonController::addSeason' => '?',
'DMD\\LaLigaApi\\Controller\\SeasonController::addTeam' => '?',
'DMD\\LaLigaApi\\Controller\\SeasonController::createCalendar' => '?',
+ 'DMD\\LaLigaApi\\Controller\\SeasonController::createFacilities' => '?',
+ 'DMD\\LaLigaApi\\Controller\\SeasonController::getAllFacilities' => '?',
'DMD\\LaLigaApi\\Controller\\UserController::changePassword' => '?',
'DMD\\LaLigaApi\\Controller\\UserController::createUser' => '?',
'DMD\\LaLigaApi\\Controller\\UserController::deleteUser' => '?',
@@ -90,6 +96,8 @@ class get_ServiceLocator_I7OeIahService extends DMD_LaLigaApi_KernelDevDebugCont
'DMD\\LaLigaApi\\Controller\\SeasonController:addSeason' => '?',
'DMD\\LaLigaApi\\Controller\\SeasonController:addTeam' => '?',
'DMD\\LaLigaApi\\Controller\\SeasonController:createCalendar' => '?',
+ 'DMD\\LaLigaApi\\Controller\\SeasonController:createFacilities' => '?',
+ 'DMD\\LaLigaApi\\Controller\\SeasonController:getAllFacilities' => '?',
'DMD\\LaLigaApi\\Controller\\UserController:changePassword' => '?',
'DMD\\LaLigaApi\\Controller\\UserController:createUser' => '?',
'DMD\\LaLigaApi\\Controller\\UserController:deleteUser' => '?',
diff --git a/var/cache/dev/ContainerXpGVJqc/get_ServiceLocator_BpNZAIPService.php b/var/cache/dev/ContainerBNoZEh4/get_ServiceLocator_BpNZAIPService.php
similarity index 97%
rename from var/cache/dev/ContainerXpGVJqc/get_ServiceLocator_BpNZAIPService.php
rename to var/cache/dev/ContainerBNoZEh4/get_ServiceLocator_BpNZAIPService.php
index 47a10fea..ae67c524 100644
--- a/var/cache/dev/ContainerXpGVJqc/get_ServiceLocator_BpNZAIPService.php
+++ b/var/cache/dev/ContainerBNoZEh4/get_ServiceLocator_BpNZAIPService.php
@@ -1,6 +1,6 @@
privates['.service_locator.g3NSLSC'] = new \Symfony\Component\DependencyInjection\Argument\ServiceLocator($container->getService ??= $container->getService(...), [
+ 'handleGetAllFacilities' => ['privates', 'DMD\\LaLigaApi\\Service\\Season\\getAllFacilities\\HandleGetAllFacilities', 'getHandleGetAllFacilitiesService', true],
+ ], [
+ 'handleGetAllFacilities' => 'DMD\\LaLigaApi\\Service\\Season\\getAllFacilities\\HandleGetAllFacilities',
+ ]);
+ }
+}
diff --git a/var/cache/dev/ContainerEXZktqY/get_ServiceLocator_GqgSDnyService.php b/var/cache/dev/ContainerBNoZEh4/get_ServiceLocator_GqgSDnyService.php
similarity index 97%
rename from var/cache/dev/ContainerEXZktqY/get_ServiceLocator_GqgSDnyService.php
rename to var/cache/dev/ContainerBNoZEh4/get_ServiceLocator_GqgSDnyService.php
index 35de1e05..2791c785 100644
--- a/var/cache/dev/ContainerEXZktqY/get_ServiceLocator_GqgSDnyService.php
+++ b/var/cache/dev/ContainerBNoZEh4/get_ServiceLocator_GqgSDnyService.php
@@ -1,6 +1,6 @@
privates['.service_locator.Kun9UOk'] = new \Symfony\Component\DependencyInjection\Argument\ServiceLocator($container->getService ??= $container->getService(...), [
+ 'handleCreateFacilities' => ['privates', 'DMD\\LaLigaApi\\Service\\Season\\createFacilities\\HandleCreateFacilities', 'getHandleCreateFacilitiesService', true],
+ ], [
+ 'handleCreateFacilities' => 'DMD\\LaLigaApi\\Service\\Season\\createFacilities\\HandleCreateFacilities',
+ ]);
+ }
+}
diff --git a/var/cache/dev/ContainerEXZktqY/get_ServiceLocator_O2p6Lk7Service.php b/var/cache/dev/ContainerBNoZEh4/get_ServiceLocator_O2p6Lk7Service.php
similarity index 98%
rename from var/cache/dev/ContainerEXZktqY/get_ServiceLocator_O2p6Lk7Service.php
rename to var/cache/dev/ContainerBNoZEh4/get_ServiceLocator_O2p6Lk7Service.php
index 892426ee..9fa546e2 100644
--- a/var/cache/dev/ContainerEXZktqY/get_ServiceLocator_O2p6Lk7Service.php
+++ b/var/cache/dev/ContainerBNoZEh4/get_ServiceLocator_O2p6Lk7Service.php
@@ -1,6 +1,6 @@
true,
@@ -148,6 +148,7 @@ return [
'.security.request_matcher.q1UFWmc' => true,
'.security.request_matcher.vhy2oy3' => true,
'.service_locator.0HZFGLA' => true,
+ '.service_locator.0LkE2AA' => true,
'.service_locator.0jwdN2L' => true,
'.service_locator.3XXT.iB' => true,
'.service_locator.5y4U6aa' => true,
@@ -167,14 +168,13 @@ return [
'.service_locator.GXvs259' => true,
'.service_locator.GqgSDny' => true,
'.service_locator.H6m0t47' => true,
- '.service_locator.HB35.IM' => true,
'.service_locator.HYwFH6j' => true,
- '.service_locator.I7OeIah' => true,
'.service_locator.IKoa88B' => true,
'.service_locator.Jf7ZX1M' => true,
'.service_locator.Jg.pCCn' => true,
'.service_locator.KLVvNIq' => true,
'.service_locator.KmogcOS' => true,
+ '.service_locator.Kun9UOk' => true,
'.service_locator.LMuqDDe' => true,
'.service_locator.LcVn9Hr' => true,
'.service_locator.LrCXAmX' => true,
@@ -191,6 +191,7 @@ return [
'.service_locator.PvoQzFT.router.default' => true,
'.service_locator.QVovN8M' => true,
'.service_locator.RQy.OTO' => true,
+ '.service_locator.TcLmKeC' => true,
'.service_locator.UG3DVQt' => true,
'.service_locator.UgMf8.i' => true,
'.service_locator.VHsrTPK' => true,
@@ -198,7 +199,9 @@ return [
'.service_locator.XXv1IfR' => true,
'.service_locator.Xbsa8iG' => true,
'.service_locator.YUfsgoA' => true,
+ '.service_locator.Yh6vd4o' => true,
'.service_locator._fzSvpg' => true,
+ '.service_locator.bNYvrCq' => true,
'.service_locator.cUcW89y' => true,
'.service_locator.cUcW89y.router.cache_warmer' => true,
'.service_locator.cXsfP3P' => true,
@@ -207,6 +210,7 @@ return [
'.service_locator.dsdSIIc' => true,
'.service_locator.etVElvN' => true,
'.service_locator.etVElvN.twig.template_cache_warmer' => true,
+ '.service_locator.g3NSLSC' => true,
'.service_locator.gFlme_s' => true,
'.service_locator.hAmcZCC' => true,
'.service_locator.idpQYdI' => true,
@@ -258,12 +262,11 @@ return [
'DMD\\LaLigaApi\\Repository\\UserRepository' => true,
'DMD\\LaLigaApi\\Service\\Common\\AuthorizeRequest' => true,
'DMD\\LaLigaApi\\Service\\Common\\EmailSender' => true,
+ 'DMD\\LaLigaApi\\Service\\Common\\FacilityFactory' => true,
'DMD\\LaLigaApi\\Service\\Common\\NotificationFactory' => true,
'DMD\\LaLigaApi\\Service\\Common\\TeamFactory' => true,
- 'DMD\\LaLigaApi\\Service\\Common\\FacilityFactory' => true,
'DMD\\LaLigaApi\\Service\\League\\LeagueFactory' => true,
'DMD\\LaLigaApi\\Service\\League\\acceptJoinLeagueRequest\\HandleAcceptJoinLeagueRequest' => true,
- 'DMD\\LaLigaApi\\Service\\Season\\createFacilities\\HandleCreateFacilities' => true,
'DMD\\LaLigaApi\\Service\\League\\createLeague\\HandleCreateLeague' => true,
'DMD\\LaLigaApi\\Service\\League\\declineJoinLeagueRequest\\HandleDeclineJoinLeagueRequest' => true,
'DMD\\LaLigaApi\\Service\\League\\getAllLeagues\\HandleGetAllLeagues' => true,
@@ -273,8 +276,10 @@ return [
'DMD\\LaLigaApi\\Service\\League\\updateLeague\\HandleUpdateLeague' => true,
'DMD\\LaLigaApi\\Service\\Season\\SeasonFactory' => true,
'DMD\\LaLigaApi\\Service\\Season\\addTeam\\HandleAddTeam' => true,
+ 'DMD\\LaLigaApi\\Service\\Season\\createFacilities\\HandleCreateFacilities' => true,
'DMD\\LaLigaApi\\Service\\Season\\createGameCalendar\\HandleCreateGameCalendarRequest' => true,
'DMD\\LaLigaApi\\Service\\Season\\createSeason\\HandleCreateSeason' => true,
+ 'DMD\\LaLigaApi\\Service\\Season\\getAllFacilities\\HandleGetAllFacilities' => true,
'DMD\\LaLigaApi\\Service\\Season\\getAllSeasons\\HandleGetAllSeason' => true,
'DMD\\LaLigaApi\\Service\\Season\\getSeasonById\\HandleGetSeasonById' => true,
'DMD\\LaLigaApi\\Service\\Season\\updateSeason\\HandleUpdateSeason' => true,
diff --git a/var/cache/dev/ContainerXpGVJqc/DMD_LaLigaApi_KernelDevDebugContainer.php b/var/cache/dev/ContainerEB2LqQ8/DMD_LaLigaApi_KernelDevDebugContainer.php
similarity index 99%
rename from var/cache/dev/ContainerXpGVJqc/DMD_LaLigaApi_KernelDevDebugContainer.php
rename to var/cache/dev/ContainerEB2LqQ8/DMD_LaLigaApi_KernelDevDebugContainer.php
index 3a301b46..0eb9d970 100644
--- a/var/cache/dev/ContainerXpGVJqc/DMD_LaLigaApi_KernelDevDebugContainer.php
+++ b/var/cache/dev/ContainerEB2LqQ8/DMD_LaLigaApi_KernelDevDebugContainer.php
@@ -1,6 +1,6 @@
'main',
],
'lexik_jwt_authentication.authenticator_manager_enabled' => true,
- 'lexik_jwt_authentication.token_ttl' => 1800,
+ 'lexik_jwt_authentication.token_ttl' => 18000,
'lexik_jwt_authentication.clock_skew' => 0,
'lexik_jwt_authentication.user_identity_field' => 'username',
'lexik_jwt_authentication.allow_no_expiration' => false,
diff --git a/var/cache/dev/ContainerEXZktqY/EntityManagerGhostAd02211.php b/var/cache/dev/ContainerEB2LqQ8/EntityManagerGhostAd02211.php
similarity index 99%
rename from var/cache/dev/ContainerEXZktqY/EntityManagerGhostAd02211.php
rename to var/cache/dev/ContainerEB2LqQ8/EntityManagerGhostAd02211.php
index cf6f2a76..bd2c8d68 100644
--- a/var/cache/dev/ContainerEXZktqY/EntityManagerGhostAd02211.php
+++ b/var/cache/dev/ContainerEB2LqQ8/EntityManagerGhostAd02211.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://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')), []);
+ 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=7.4.16&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/ContainerXpGVJqc/getDoctrine_Dbal_DefaultConnection_EventManagerService.php b/var/cache/dev/ContainerEB2LqQ8/getDoctrine_Dbal_DefaultConnection_EventManagerService.php
similarity index 99%
rename from var/cache/dev/ContainerXpGVJqc/getDoctrine_Dbal_DefaultConnection_EventManagerService.php
rename to var/cache/dev/ContainerEB2LqQ8/getDoctrine_Dbal_DefaultConnection_EventManagerService.php
index fe37c48f..8c8c1be0 100644
--- a/var/cache/dev/ContainerXpGVJqc/getDoctrine_Dbal_DefaultConnection_EventManagerService.php
+++ b/var/cache/dev/ContainerEB2LqQ8/getDoctrine_Dbal_DefaultConnection_EventManagerService.php
@@ -1,6 +1,6 @@
privates['DMD\\LaLigaApi\\Service\\Season\\createFacilities\\HandleCreateFacilities'] = new \DMD\LaLigaApi\Service\Season\createFacilities\HandleCreateFacilities(($container->privates['DMD\\LaLigaApi\\Service\\Common\\AuthorizeRequest'] ?? $container->load('getAuthorizeRequestService')), new \DMD\LaLigaApi\Service\Common\FacilityFactory(), ($container->services['doctrine.orm.default_entity_manager'] ?? $container->load('getDoctrine_Orm_DefaultEntityManagerService')), ($container->privates['security.helper'] ?? $container->load('getSecurity_HelperService')), ($container->privates['DMD\\LaLigaApi\\Repository\\UserRepository'] ?? $container->load('getUserRepositoryService')), ($container->privates['DMD\\LaLigaApi\\Repository\\SeasonRepository'] ?? $container->load('getSeasonRepositoryService')));
+ }
+}
diff --git a/var/cache/dev/ContainerEXZktqY/getHandleCreateGameCalendarRequestService.php b/var/cache/dev/ContainerEB2LqQ8/getHandleCreateGameCalendarRequestService.php
similarity index 98%
rename from var/cache/dev/ContainerEXZktqY/getHandleCreateGameCalendarRequestService.php
rename to var/cache/dev/ContainerEB2LqQ8/getHandleCreateGameCalendarRequestService.php
index e3fe9ffe..c2d4a87c 100644
--- a/var/cache/dev/ContainerEXZktqY/getHandleCreateGameCalendarRequestService.php
+++ b/var/cache/dev/ContainerEB2LqQ8/getHandleCreateGameCalendarRequestService.php
@@ -1,6 +1,6 @@
privates['DMD\\LaLigaApi\\Service\\Season\\getAllFacilities\\HandleGetAllFacilities'] = new \DMD\LaLigaApi\Service\Season\getAllFacilities\HandleGetAllFacilities(($container->services['doctrine.orm.default_entity_manager'] ?? $container->load('getDoctrine_Orm_DefaultEntityManagerService')), ($container->privates['DMD\\LaLigaApi\\Repository\\FacilityRepository'] ?? $container->load('getFacilityRepositoryService')), ($container->privates['DMD\\LaLigaApi\\Repository\\SeasonRepository'] ?? $container->load('getSeasonRepositoryService')));
+ }
+}
diff --git a/var/cache/dev/ContainerXpGVJqc/getHandleGetAllLeaguesService.php b/var/cache/dev/ContainerEB2LqQ8/getHandleGetAllLeaguesService.php
similarity index 97%
rename from var/cache/dev/ContainerXpGVJqc/getHandleGetAllLeaguesService.php
rename to var/cache/dev/ContainerEB2LqQ8/getHandleGetAllLeaguesService.php
index 89311031..4507fefa 100644
--- a/var/cache/dev/ContainerXpGVJqc/getHandleGetAllLeaguesService.php
+++ b/var/cache/dev/ContainerEB2LqQ8/getHandleGetAllLeaguesService.php
@@ -1,6 +1,6 @@
services['lexik_jwt_authentication.encoder'] = new \Lexik\Bundle\JWTAuthenticationBundle\Encoder\LcobucciJWTEncoder(new \Lexik\Bundle\JWTAuthenticationBundle\Services\JWSProvider\LcobucciJWSProvider(($container->services['lexik_jwt_authentication.key_loader'] ?? $container->load('getLexikJwtAuthentication_KeyLoaderService')), 'openssl', 'RS256', 1800, 0, false));
+ return $container->services['lexik_jwt_authentication.encoder'] = new \Lexik\Bundle\JWTAuthenticationBundle\Encoder\LcobucciJWTEncoder(new \Lexik\Bundle\JWTAuthenticationBundle\Services\JWSProvider\LcobucciJWSProvider(($container->services['lexik_jwt_authentication.key_loader'] ?? $container->load('getLexikJwtAuthentication_KeyLoaderService')), 'openssl', 'RS256', 18000, 0, false));
}
}
diff --git a/var/cache/dev/ContainerXpGVJqc/getLexikJwtAuthentication_GenerateKeypairCommandService.php b/var/cache/dev/ContainerEB2LqQ8/getLexikJwtAuthentication_GenerateKeypairCommandService.php
similarity index 98%
rename from var/cache/dev/ContainerXpGVJqc/getLexikJwtAuthentication_GenerateKeypairCommandService.php
rename to var/cache/dev/ContainerEB2LqQ8/getLexikJwtAuthentication_GenerateKeypairCommandService.php
index 5b013732..fe990b99 100644
--- a/var/cache/dev/ContainerXpGVJqc/getLexikJwtAuthentication_GenerateKeypairCommandService.php
+++ b/var/cache/dev/ContainerEB2LqQ8/getLexikJwtAuthentication_GenerateKeypairCommandService.php
@@ -1,6 +1,6 @@
privates['.debug.value_resolver.argument_resolver.not_tagged_controller'] = new \Symfony\Component\HttpKernel\Controller\ArgumentResolver\TraceableValueResolver(new \Symfony\Component\HttpKernel\Controller\ArgumentResolver\NotTaggedControllerValueResolver(($container->privates['.service_locator.I7OeIah'] ?? $container->load('get_ServiceLocator_I7OeIahService'))), ($container->privates['debug.stopwatch'] ??= new \Symfony\Component\Stopwatch\Stopwatch(true)));
+ return $container->privates['.debug.value_resolver.argument_resolver.not_tagged_controller'] = new \Symfony\Component\HttpKernel\Controller\ArgumentResolver\TraceableValueResolver(new \Symfony\Component\HttpKernel\Controller\ArgumentResolver\NotTaggedControllerValueResolver(($container->privates['.service_locator.bNYvrCq'] ?? $container->load('get_ServiceLocator_BNYvrCqService'))), ($container->privates['debug.stopwatch'] ??= new \Symfony\Component\Stopwatch\Stopwatch(true)));
}
}
diff --git a/var/cache/dev/ContainerEXZktqY/get_Debug_ValueResolver_ArgumentResolver_QueryParameterValueResolverService.php b/var/cache/dev/ContainerEB2LqQ8/get_Debug_ValueResolver_ArgumentResolver_QueryParameterValueResolverService.php
similarity index 98%
rename from var/cache/dev/ContainerEXZktqY/get_Debug_ValueResolver_ArgumentResolver_QueryParameterValueResolverService.php
rename to var/cache/dev/ContainerEB2LqQ8/get_Debug_ValueResolver_ArgumentResolver_QueryParameterValueResolverService.php
index 9f684550..36f48208 100644
--- a/var/cache/dev/ContainerEXZktqY/get_Debug_ValueResolver_ArgumentResolver_QueryParameterValueResolverService.php
+++ b/var/cache/dev/ContainerEB2LqQ8/get_Debug_ValueResolver_ArgumentResolver_QueryParameterValueResolverService.php
@@ -1,6 +1,6 @@
privates['.debug.value_resolver.argument_resolver.service'] = new \Symfony\Component\HttpKernel\Controller\ArgumentResolver\TraceableValueResolver(new \Symfony\Component\HttpKernel\Controller\ArgumentResolver\ServiceValueResolver(($container->privates['.service_locator.I7OeIah'] ?? $container->load('get_ServiceLocator_I7OeIahService'))), ($container->privates['debug.stopwatch'] ??= new \Symfony\Component\Stopwatch\Stopwatch(true)));
+ return $container->privates['.debug.value_resolver.argument_resolver.service'] = new \Symfony\Component\HttpKernel\Controller\ArgumentResolver\TraceableValueResolver(new \Symfony\Component\HttpKernel\Controller\ArgumentResolver\ServiceValueResolver(($container->privates['.service_locator.bNYvrCq'] ?? $container->load('get_ServiceLocator_BNYvrCqService'))), ($container->privates['debug.stopwatch'] ??= new \Symfony\Component\Stopwatch\Stopwatch(true)));
}
}
diff --git a/var/cache/dev/ContainerXpGVJqc/get_Debug_ValueResolver_ArgumentResolver_SessionService.php b/var/cache/dev/ContainerEB2LqQ8/get_Debug_ValueResolver_ArgumentResolver_SessionService.php
similarity index 98%
rename from var/cache/dev/ContainerXpGVJqc/get_Debug_ValueResolver_ArgumentResolver_SessionService.php
rename to var/cache/dev/ContainerEB2LqQ8/get_Debug_ValueResolver_ArgumentResolver_SessionService.php
index f1169517..90699586 100644
--- a/var/cache/dev/ContainerXpGVJqc/get_Debug_ValueResolver_ArgumentResolver_SessionService.php
+++ b/var/cache/dev/ContainerEB2LqQ8/get_Debug_ValueResolver_ArgumentResolver_SessionService.php
@@ -1,6 +1,6 @@
privates['.service_locator.I7OeIah'] = new \Symfony\Component\DependencyInjection\Argument\ServiceLocator($container->getService ??= $container->getService(...), [
+ return $container->privates['.service_locator.bNYvrCq'] = new \Symfony\Component\DependencyInjection\Argument\ServiceLocator($container->getService ??= $container->getService(...), [
'DMD\\LaLigaApi\\Controller\\LeagueController::acceptJoinRequest' => ['privates', '.service_locator.GqgSDny', 'get_ServiceLocator_GqgSDnyService', true],
'DMD\\LaLigaApi\\Controller\\LeagueController::createLeague' => ['privates', '.service_locator.RQy.OTO', 'get_ServiceLocator_RQy_OTOService', true],
'DMD\\LaLigaApi\\Controller\\LeagueController::declineJoinRequest' => ['privates', '.service_locator.G1XuiGs', 'get_ServiceLocator_G1XuiGsService', true],
@@ -31,6 +31,8 @@ class get_ServiceLocator_I7OeIahService extends DMD_LaLigaApi_KernelDevDebugCont
'DMD\\LaLigaApi\\Controller\\SeasonController::addSeason' => ['privates', '.service_locator.PJHysgX', 'get_ServiceLocator_PJHysgXService', true],
'DMD\\LaLigaApi\\Controller\\SeasonController::addTeam' => ['privates', '.service_locator.hAmcZCC', 'get_ServiceLocator_HAmcZCCService', true],
'DMD\\LaLigaApi\\Controller\\SeasonController::createCalendar' => ['privates', '.service_locator.EAMCOjq', 'get_ServiceLocator_EAMCOjqService', true],
+ 'DMD\\LaLigaApi\\Controller\\SeasonController::createFacilities' => ['privates', '.service_locator.Kun9UOk', 'get_ServiceLocator_Kun9UOkService', true],
+ 'DMD\\LaLigaApi\\Controller\\SeasonController::getAllFacilities' => ['privates', '.service_locator.g3NSLSC', 'get_ServiceLocator_G3NSLSCService', true],
'DMD\\LaLigaApi\\Controller\\UserController::changePassword' => ['privates', '.service_locator.jzhWNcb', 'get_ServiceLocator_JzhWNcbService', true],
'DMD\\LaLigaApi\\Controller\\UserController::createUser' => ['privates', '.service_locator.FoktWoU', 'get_ServiceLocator_FoktWoUService', true],
'DMD\\LaLigaApi\\Controller\\UserController::deleteUser' => ['privates', '.service_locator.k8rLaoj', 'get_ServiceLocator_K8rLaojService', true],
@@ -51,6 +53,8 @@ class get_ServiceLocator_I7OeIahService extends DMD_LaLigaApi_KernelDevDebugCont
'DMD\\LaLigaApi\\Controller\\SeasonController:addSeason' => ['privates', '.service_locator.PJHysgX', 'get_ServiceLocator_PJHysgXService', true],
'DMD\\LaLigaApi\\Controller\\SeasonController:addTeam' => ['privates', '.service_locator.hAmcZCC', 'get_ServiceLocator_HAmcZCCService', true],
'DMD\\LaLigaApi\\Controller\\SeasonController:createCalendar' => ['privates', '.service_locator.EAMCOjq', 'get_ServiceLocator_EAMCOjqService', true],
+ 'DMD\\LaLigaApi\\Controller\\SeasonController:createFacilities' => ['privates', '.service_locator.Kun9UOk', 'get_ServiceLocator_Kun9UOkService', true],
+ 'DMD\\LaLigaApi\\Controller\\SeasonController:getAllFacilities' => ['privates', '.service_locator.g3NSLSC', 'get_ServiceLocator_G3NSLSCService', true],
'DMD\\LaLigaApi\\Controller\\UserController:changePassword' => ['privates', '.service_locator.jzhWNcb', 'get_ServiceLocator_JzhWNcbService', true],
'DMD\\LaLigaApi\\Controller\\UserController:createUser' => ['privates', '.service_locator.FoktWoU', 'get_ServiceLocator_FoktWoUService', true],
'DMD\\LaLigaApi\\Controller\\UserController:deleteUser' => ['privates', '.service_locator.k8rLaoj', 'get_ServiceLocator_K8rLaojService', true],
@@ -70,6 +74,8 @@ class get_ServiceLocator_I7OeIahService extends DMD_LaLigaApi_KernelDevDebugCont
'DMD\\LaLigaApi\\Controller\\SeasonController::addSeason' => '?',
'DMD\\LaLigaApi\\Controller\\SeasonController::addTeam' => '?',
'DMD\\LaLigaApi\\Controller\\SeasonController::createCalendar' => '?',
+ 'DMD\\LaLigaApi\\Controller\\SeasonController::createFacilities' => '?',
+ 'DMD\\LaLigaApi\\Controller\\SeasonController::getAllFacilities' => '?',
'DMD\\LaLigaApi\\Controller\\UserController::changePassword' => '?',
'DMD\\LaLigaApi\\Controller\\UserController::createUser' => '?',
'DMD\\LaLigaApi\\Controller\\UserController::deleteUser' => '?',
@@ -90,6 +96,8 @@ class get_ServiceLocator_I7OeIahService extends DMD_LaLigaApi_KernelDevDebugCont
'DMD\\LaLigaApi\\Controller\\SeasonController:addSeason' => '?',
'DMD\\LaLigaApi\\Controller\\SeasonController:addTeam' => '?',
'DMD\\LaLigaApi\\Controller\\SeasonController:createCalendar' => '?',
+ 'DMD\\LaLigaApi\\Controller\\SeasonController:createFacilities' => '?',
+ 'DMD\\LaLigaApi\\Controller\\SeasonController:getAllFacilities' => '?',
'DMD\\LaLigaApi\\Controller\\UserController:changePassword' => '?',
'DMD\\LaLigaApi\\Controller\\UserController:createUser' => '?',
'DMD\\LaLigaApi\\Controller\\UserController:deleteUser' => '?',
diff --git a/var/cache/dev/ContainerEXZktqY/get_ServiceLocator_BpNZAIPService.php b/var/cache/dev/ContainerEB2LqQ8/get_ServiceLocator_BpNZAIPService.php
similarity index 97%
rename from var/cache/dev/ContainerEXZktqY/get_ServiceLocator_BpNZAIPService.php
rename to var/cache/dev/ContainerEB2LqQ8/get_ServiceLocator_BpNZAIPService.php
index 5240b0be..b05f446b 100644
--- a/var/cache/dev/ContainerEXZktqY/get_ServiceLocator_BpNZAIPService.php
+++ b/var/cache/dev/ContainerEB2LqQ8/get_ServiceLocator_BpNZAIPService.php
@@ -1,6 +1,6 @@
privates['.service_locator.g3NSLSC'] = new \Symfony\Component\DependencyInjection\Argument\ServiceLocator($container->getService ??= $container->getService(...), [
+ 'handleGetAllFacilities' => ['privates', 'DMD\\LaLigaApi\\Service\\Season\\getAllFacilities\\HandleGetAllFacilities', 'getHandleGetAllFacilitiesService', true],
+ ], [
+ 'handleGetAllFacilities' => 'DMD\\LaLigaApi\\Service\\Season\\getAllFacilities\\HandleGetAllFacilities',
+ ]);
+ }
+}
diff --git a/var/cache/dev/ContainerXpGVJqc/get_ServiceLocator_GqgSDnyService.php b/var/cache/dev/ContainerEB2LqQ8/get_ServiceLocator_GqgSDnyService.php
similarity index 97%
rename from var/cache/dev/ContainerXpGVJqc/get_ServiceLocator_GqgSDnyService.php
rename to var/cache/dev/ContainerEB2LqQ8/get_ServiceLocator_GqgSDnyService.php
index 5ecf4781..793c8ccd 100644
--- a/var/cache/dev/ContainerXpGVJqc/get_ServiceLocator_GqgSDnyService.php
+++ b/var/cache/dev/ContainerEB2LqQ8/get_ServiceLocator_GqgSDnyService.php
@@ -1,6 +1,6 @@
privates['.service_locator.Kun9UOk'] = new \Symfony\Component\DependencyInjection\Argument\ServiceLocator($container->getService ??= $container->getService(...), [
+ 'handleCreateFacilities' => ['privates', 'DMD\\LaLigaApi\\Service\\Season\\createFacilities\\HandleCreateFacilities', 'getHandleCreateFacilitiesService', true],
+ ], [
+ 'handleCreateFacilities' => 'DMD\\LaLigaApi\\Service\\Season\\createFacilities\\HandleCreateFacilities',
+ ]);
+ }
+}
diff --git a/var/cache/dev/ContainerXpGVJqc/get_ServiceLocator_O2p6Lk7Service.php b/var/cache/dev/ContainerEB2LqQ8/get_ServiceLocator_O2p6Lk7Service.php
similarity index 98%
rename from var/cache/dev/ContainerXpGVJqc/get_ServiceLocator_O2p6Lk7Service.php
rename to var/cache/dev/ContainerEB2LqQ8/get_ServiceLocator_O2p6Lk7Service.php
index e50efb14..f22749fc 100644
--- a/var/cache/dev/ContainerXpGVJqc/get_ServiceLocator_O2p6Lk7Service.php
+++ b/var/cache/dev/ContainerEB2LqQ8/get_ServiceLocator_O2p6Lk7Service.php
@@ -1,6 +1,6 @@
true,
@@ -148,6 +148,7 @@ return [
'.security.request_matcher.q1UFWmc' => true,
'.security.request_matcher.vhy2oy3' => true,
'.service_locator.0HZFGLA' => true,
+ '.service_locator.0LkE2AA' => true,
'.service_locator.0jwdN2L' => true,
'.service_locator.3XXT.iB' => true,
'.service_locator.5y4U6aa' => true,
@@ -167,14 +168,13 @@ return [
'.service_locator.GXvs259' => true,
'.service_locator.GqgSDny' => true,
'.service_locator.H6m0t47' => true,
- '.service_locator.HB35.IM' => true,
'.service_locator.HYwFH6j' => true,
- '.service_locator.I7OeIah' => true,
'.service_locator.IKoa88B' => true,
'.service_locator.Jf7ZX1M' => true,
'.service_locator.Jg.pCCn' => true,
'.service_locator.KLVvNIq' => true,
'.service_locator.KmogcOS' => true,
+ '.service_locator.Kun9UOk' => true,
'.service_locator.LMuqDDe' => true,
'.service_locator.LcVn9Hr' => true,
'.service_locator.LrCXAmX' => true,
@@ -191,6 +191,7 @@ return [
'.service_locator.PvoQzFT.router.default' => true,
'.service_locator.QVovN8M' => true,
'.service_locator.RQy.OTO' => true,
+ '.service_locator.TcLmKeC' => true,
'.service_locator.UG3DVQt' => true,
'.service_locator.UgMf8.i' => true,
'.service_locator.VHsrTPK' => true,
@@ -198,7 +199,9 @@ return [
'.service_locator.XXv1IfR' => true,
'.service_locator.Xbsa8iG' => true,
'.service_locator.YUfsgoA' => true,
+ '.service_locator.Yh6vd4o' => true,
'.service_locator._fzSvpg' => true,
+ '.service_locator.bNYvrCq' => true,
'.service_locator.cUcW89y' => true,
'.service_locator.cUcW89y.router.cache_warmer' => true,
'.service_locator.cXsfP3P' => true,
@@ -207,6 +210,7 @@ return [
'.service_locator.dsdSIIc' => true,
'.service_locator.etVElvN' => true,
'.service_locator.etVElvN.twig.template_cache_warmer' => true,
+ '.service_locator.g3NSLSC' => true,
'.service_locator.gFlme_s' => true,
'.service_locator.hAmcZCC' => true,
'.service_locator.idpQYdI' => true,
@@ -258,12 +262,11 @@ return [
'DMD\\LaLigaApi\\Repository\\UserRepository' => true,
'DMD\\LaLigaApi\\Service\\Common\\AuthorizeRequest' => true,
'DMD\\LaLigaApi\\Service\\Common\\EmailSender' => true,
+ 'DMD\\LaLigaApi\\Service\\Common\\FacilityFactory' => true,
'DMD\\LaLigaApi\\Service\\Common\\NotificationFactory' => true,
'DMD\\LaLigaApi\\Service\\Common\\TeamFactory' => true,
- 'DMD\\LaLigaApi\\Service\\Common\\FacilityFactory' => true,
'DMD\\LaLigaApi\\Service\\League\\LeagueFactory' => true,
'DMD\\LaLigaApi\\Service\\League\\acceptJoinLeagueRequest\\HandleAcceptJoinLeagueRequest' => true,
- 'DMD\\LaLigaApi\\Service\\Season\\createFacilities\\HandleCreateFacilities' => true,
'DMD\\LaLigaApi\\Service\\League\\createLeague\\HandleCreateLeague' => true,
'DMD\\LaLigaApi\\Service\\League\\declineJoinLeagueRequest\\HandleDeclineJoinLeagueRequest' => true,
'DMD\\LaLigaApi\\Service\\League\\getAllLeagues\\HandleGetAllLeagues' => true,
@@ -273,8 +276,10 @@ return [
'DMD\\LaLigaApi\\Service\\League\\updateLeague\\HandleUpdateLeague' => true,
'DMD\\LaLigaApi\\Service\\Season\\SeasonFactory' => true,
'DMD\\LaLigaApi\\Service\\Season\\addTeam\\HandleAddTeam' => true,
+ 'DMD\\LaLigaApi\\Service\\Season\\createFacilities\\HandleCreateFacilities' => true,
'DMD\\LaLigaApi\\Service\\Season\\createGameCalendar\\HandleCreateGameCalendarRequest' => true,
'DMD\\LaLigaApi\\Service\\Season\\createSeason\\HandleCreateSeason' => true,
+ 'DMD\\LaLigaApi\\Service\\Season\\getAllFacilities\\HandleGetAllFacilities' => true,
'DMD\\LaLigaApi\\Service\\Season\\getAllSeasons\\HandleGetAllSeason' => true,
'DMD\\LaLigaApi\\Service\\Season\\getSeasonById\\HandleGetSeasonById' => true,
'DMD\\LaLigaApi\\Service\\Season\\updateSeason\\HandleUpdateSeason' => true,
diff --git a/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.php b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.php
index a09e7672..7a44d3e9 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(\ContainerXpGVJqc\DMD_LaLigaApi_KernelDevDebugContainer::class, false)) {
+if (\class_exists(\ContainerEB2LqQ8\DMD_LaLigaApi_KernelDevDebugContainer::class, false)) {
// no-op
-} elseif (!include __DIR__.'/ContainerXpGVJqc/DMD_LaLigaApi_KernelDevDebugContainer.php') {
- touch(__DIR__.'/ContainerXpGVJqc.legacy');
+} elseif (!include __DIR__.'/ContainerEB2LqQ8/DMD_LaLigaApi_KernelDevDebugContainer.php') {
+ touch(__DIR__.'/ContainerEB2LqQ8.legacy');
return;
}
if (!\class_exists(DMD_LaLigaApi_KernelDevDebugContainer::class, false)) {
- \class_alias(\ContainerXpGVJqc\DMD_LaLigaApi_KernelDevDebugContainer::class, DMD_LaLigaApi_KernelDevDebugContainer::class, false);
+ \class_alias(\ContainerEB2LqQ8\DMD_LaLigaApi_KernelDevDebugContainer::class, DMD_LaLigaApi_KernelDevDebugContainer::class, false);
}
-return new \ContainerXpGVJqc\DMD_LaLigaApi_KernelDevDebugContainer([
- 'container.build_hash' => 'XpGVJqc',
- 'container.build_id' => 'ed08e46e',
- 'container.build_time' => 1717366722,
-], __DIR__.\DIRECTORY_SEPARATOR.'ContainerXpGVJqc');
+return new \ContainerEB2LqQ8\DMD_LaLigaApi_KernelDevDebugContainer([
+ 'container.build_hash' => 'EB2LqQ8',
+ 'container.build_id' => '0d6f5d03',
+ 'container.build_time' => 1717887227,
+], __DIR__.\DIRECTORY_SEPARATOR.'ContainerEB2LqQ8');
diff --git a/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.php.meta b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.php.meta
index 53f5ec79..033ee796 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 999f5b63..4d559abd 100644
--- a/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.preload.php
+++ b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.preload.php
@@ -10,186 +10,190 @@ if (in_array(PHP_SAPI, ['cli', 'phpdbg'], true)) {
}
require dirname(__DIR__, 3).''.\DIRECTORY_SEPARATOR.'vendor/autoload.php';
-(require __DIR__.'/DMD_LaLigaApi_KernelDevDebugContainer.php')->set(\ContainerXpGVJqc\DMD_LaLigaApi_KernelDevDebugContainer::class, null);
-require __DIR__.'/ContainerXpGVJqc/EntityManagerGhostAd02211.php';
-require __DIR__.'/ContainerXpGVJqc/RequestPayloadValueResolverGhostE4c6c7a.php';
-require __DIR__.'/ContainerXpGVJqc/getValidator_WhenService.php';
-require __DIR__.'/ContainerXpGVJqc/getValidator_NotCompromisedPasswordService.php';
-require __DIR__.'/ContainerXpGVJqc/getValidator_NoSuspiciousCharactersService.php';
-require __DIR__.'/ContainerXpGVJqc/getValidator_ExpressionService.php';
-require __DIR__.'/ContainerXpGVJqc/getValidator_EmailService.php';
-require __DIR__.'/ContainerXpGVJqc/getValidator_BuilderService.php';
-require __DIR__.'/ContainerXpGVJqc/getValidatorService.php';
-require __DIR__.'/ContainerXpGVJqc/getTwig_Runtime_SecurityCsrfService.php';
-require __DIR__.'/ContainerXpGVJqc/getTwig_Runtime_HttpkernelService.php';
-require __DIR__.'/ContainerXpGVJqc/getTwig_Mailer_MessageListenerService.php';
-require __DIR__.'/ContainerXpGVJqc/getTwigService.php';
-require __DIR__.'/ContainerXpGVJqc/getSession_Handler_NativeService.php';
-require __DIR__.'/ContainerXpGVJqc/getSession_FactoryService.php';
-require __DIR__.'/ContainerXpGVJqc/getServicesResetterService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Validator_UserPasswordService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_UserPasswordHasherService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_UserCheckerService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_User_Provider_Concrete_AppUserProviderService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_PasswordHasherFactoryService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Logout_Listener_CsrfTokenClearingService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Listener_UserProviderService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Listener_UserChecker_MainService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Listener_UserChecker_LoginService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Listener_UserChecker_ApiService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Listener_Session_MainService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Listener_PasswordMigratingService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Listener_Main_UserProviderService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Listener_CsrfProtectionService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Listener_CheckAuthenticatorCredentialsService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_HttpUtilsService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_HelperService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Firewall_Map_Context_MainService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Firewall_Map_Context_LoginService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Firewall_Map_Context_DevService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Firewall_Map_Context_ApiService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Firewall_EventDispatcherLocatorService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Csrf_TokenStorageService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Csrf_TokenManagerService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_ChannelListenerService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Authenticator_ManagersLocatorService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Authenticator_Manager_MainService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Authenticator_Manager_LoginService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Authenticator_Manager_ApiService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Authenticator_Jwt_ApiService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_Authenticator_JsonLogin_LoginService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_AccessMapService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecurity_AccessListenerService.php';
-require __DIR__.'/ContainerXpGVJqc/getSecrets_VaultService.php';
-require __DIR__.'/ContainerXpGVJqc/getRouting_LoaderService.php';
-require __DIR__.'/ContainerXpGVJqc/getPropertyInfoService.php';
-require __DIR__.'/ContainerXpGVJqc/getNelmioApiDoc_Routes_DefaultService.php';
-require __DIR__.'/ContainerXpGVJqc/getNelmioApiDoc_RenderDocsService.php';
-require __DIR__.'/ContainerXpGVJqc/getNelmioApiDoc_ModelDescribers_ObjectService.php';
-require __DIR__.'/ContainerXpGVJqc/getNelmioApiDoc_Generator_DefaultService.php';
-require __DIR__.'/ContainerXpGVJqc/getNelmioApiDoc_Describers_Route_DefaultService.php';
-require __DIR__.'/ContainerXpGVJqc/getNelmioApiDoc_Describers_OpenapiPhp_DefaultService.php';
-require __DIR__.'/ContainerXpGVJqc/getNelmioApiDoc_Describers_ConfigService.php';
-require __DIR__.'/ContainerXpGVJqc/getNelmioApiDoc_Controller_SwaggerYamlService.php';
-require __DIR__.'/ContainerXpGVJqc/getNelmioApiDoc_Controller_SwaggerJsonService.php';
-require __DIR__.'/ContainerXpGVJqc/getMailer_TransportsService.php';
-require __DIR__.'/ContainerXpGVJqc/getMailer_TransportFactory_SmtpService.php';
-require __DIR__.'/ContainerXpGVJqc/getMailer_TransportFactory_SendmailService.php';
-require __DIR__.'/ContainerXpGVJqc/getMailer_TransportFactory_NullService.php';
-require __DIR__.'/ContainerXpGVJqc/getMailer_TransportFactory_NativeService.php';
-require __DIR__.'/ContainerXpGVJqc/getMailer_MailerService.php';
-require __DIR__.'/ContainerXpGVJqc/getLexikJwtAuthentication_KeyLoaderService.php';
-require __DIR__.'/ContainerXpGVJqc/getLexikJwtAuthentication_JwtManagerService.php';
-require __DIR__.'/ContainerXpGVJqc/getLexikJwtAuthentication_EncoderService.php';
-require __DIR__.'/ContainerXpGVJqc/getFragment_Renderer_InlineService.php';
-require __DIR__.'/ContainerXpGVJqc/getErrorControllerService.php';
-require __DIR__.'/ContainerXpGVJqc/getDoctrine_UuidGeneratorService.php';
-require __DIR__.'/ContainerXpGVJqc/getDoctrine_UlidGeneratorService.php';
-require __DIR__.'/ContainerXpGVJqc/getDoctrine_Orm_Validator_UniqueService.php';
-require __DIR__.'/ContainerXpGVJqc/getDoctrine_Orm_Listeners_PdoSessionHandlerSchemaListenerService.php';
-require __DIR__.'/ContainerXpGVJqc/getDoctrine_Orm_Listeners_LockStoreSchemaListenerService.php';
-require __DIR__.'/ContainerXpGVJqc/getDoctrine_Orm_Listeners_DoctrineTokenProviderSchemaListenerService.php';
-require __DIR__.'/ContainerXpGVJqc/getDoctrine_Orm_Listeners_DoctrineDbalCacheAdapterSchemaListenerService.php';
-require __DIR__.'/ContainerXpGVJqc/getDoctrine_Orm_DefaultListeners_AttachEntityListenersService.php';
-require __DIR__.'/ContainerXpGVJqc/getDoctrine_Orm_DefaultEntityManager_PropertyInfoExtractorService.php';
-require __DIR__.'/ContainerXpGVJqc/getDoctrine_Orm_DefaultEntityManagerService.php';
-require __DIR__.'/ContainerXpGVJqc/getDoctrine_Dbal_DefaultConnection_EventManagerService.php';
-require __DIR__.'/ContainerXpGVJqc/getDoctrine_Dbal_DefaultConnectionService.php';
-require __DIR__.'/ContainerXpGVJqc/getDoctrineService.php';
-require __DIR__.'/ContainerXpGVJqc/getDebug_Security_Voter_VoteListenerService.php';
-require __DIR__.'/ContainerXpGVJqc/getDebug_Security_Firewall_Authenticator_MainService.php';
-require __DIR__.'/ContainerXpGVJqc/getDebug_Security_Firewall_Authenticator_LoginService.php';
-require __DIR__.'/ContainerXpGVJqc/getDebug_Security_Firewall_Authenticator_ApiService.php';
-require __DIR__.'/ContainerXpGVJqc/getDebug_Security_EventDispatcher_LoginService.php';
-require __DIR__.'/ContainerXpGVJqc/getDebug_Security_EventDispatcher_ApiService.php';
-require __DIR__.'/ContainerXpGVJqc/getDebug_ErrorHandlerConfiguratorService.php';
-require __DIR__.'/ContainerXpGVJqc/getController_TemplateAttributeListenerService.php';
-require __DIR__.'/ContainerXpGVJqc/getContainer_GetRoutingConditionServiceService.php';
-require __DIR__.'/ContainerXpGVJqc/getContainer_EnvVarProcessorsLocatorService.php';
-require __DIR__.'/ContainerXpGVJqc/getContainer_EnvVarProcessorService.php';
-require __DIR__.'/ContainerXpGVJqc/getCache_ValidatorExpressionLanguageService.php';
-require __DIR__.'/ContainerXpGVJqc/getCache_SystemClearerService.php';
-require __DIR__.'/ContainerXpGVJqc/getCache_SystemService.php';
-require __DIR__.'/ContainerXpGVJqc/getCache_SecurityIsGrantedAttributeExpressionLanguageService.php';
-require __DIR__.'/ContainerXpGVJqc/getCache_GlobalClearerService.php';
-require __DIR__.'/ContainerXpGVJqc/getCache_AppClearerService.php';
-require __DIR__.'/ContainerXpGVJqc/getCache_AppService.php';
-require __DIR__.'/ContainerXpGVJqc/getTemplateControllerService.php';
-require __DIR__.'/ContainerXpGVJqc/getRedirectControllerService.php';
-require __DIR__.'/ContainerXpGVJqc/getHandleUpdateUserService.php';
-require __DIR__.'/ContainerXpGVJqc/getHandleRegistrationService.php';
-require __DIR__.'/ContainerXpGVJqc/getHandleGetNotificationsService.php';
-require __DIR__.'/ContainerXpGVJqc/getHandleDeleteUserService.php';
-require __DIR__.'/ContainerXpGVJqc/getUserSaverService.php';
-require __DIR__.'/ContainerXpGVJqc/getHandleCreateSeasonService.php';
-require __DIR__.'/ContainerXpGVJqc/getHandleCreateGameCalendarRequestService.php';
-require __DIR__.'/ContainerXpGVJqc/getHandleAddTeamService.php';
-require __DIR__.'/ContainerXpGVJqc/getHandleUpdateLeagueService.php';
-require __DIR__.'/ContainerXpGVJqc/getHandleNewJoinLeagueRequestService.php';
-require __DIR__.'/ContainerXpGVJqc/getHandleCaptainRequestService.php';
-require __DIR__.'/ContainerXpGVJqc/getHandleGetLeagueByIdService.php';
-require __DIR__.'/ContainerXpGVJqc/getHandleGetAllLeaguesService.php';
-require __DIR__.'/ContainerXpGVJqc/getHandleDeclineJoinLeagueRequestService.php';
-require __DIR__.'/ContainerXpGVJqc/getHandleCreateLeagueService.php';
-require __DIR__.'/ContainerXpGVJqc/getHandleAcceptJoinLeagueRequestService.php';
-require __DIR__.'/ContainerXpGVJqc/getNotificationFactoryService.php';
-require __DIR__.'/ContainerXpGVJqc/getEmailSenderService.php';
-require __DIR__.'/ContainerXpGVJqc/getAuthorizeRequestService.php';
-require __DIR__.'/ContainerXpGVJqc/getUserRepositoryService.php';
-require __DIR__.'/ContainerXpGVJqc/getTeamRepositoryService.php';
-require __DIR__.'/ContainerXpGVJqc/getSeasonRepositoryService.php';
-require __DIR__.'/ContainerXpGVJqc/getSeasonDataRepositoryService.php';
-require __DIR__.'/ContainerXpGVJqc/getPlayerRepositoryService.php';
-require __DIR__.'/ContainerXpGVJqc/getNotificationRepositoryService.php';
-require __DIR__.'/ContainerXpGVJqc/getLogRepositoryService.php';
-require __DIR__.'/ContainerXpGVJqc/getLeagueRepositoryService.php';
-require __DIR__.'/ContainerXpGVJqc/getGameRepositoryService.php';
-require __DIR__.'/ContainerXpGVJqc/getFileRepositoryService.php';
-require __DIR__.'/ContainerXpGVJqc/getFacilityRepositoryService.php';
-require __DIR__.'/ContainerXpGVJqc/getCustomRoleRepositoryService.php';
-require __DIR__.'/ContainerXpGVJqc/getExceptionListenerService.php';
-require __DIR__.'/ContainerXpGVJqc/getUserControllerService.php';
-require __DIR__.'/ContainerXpGVJqc/getSeasonControllerService.php';
-require __DIR__.'/ContainerXpGVJqc/getNotificationControllerService.php';
-require __DIR__.'/ContainerXpGVJqc/getLeagueControllerService.php';
-require __DIR__.'/ContainerXpGVJqc/get_ServiceLocator_Y4Zrx_Service.php';
-require __DIR__.'/ContainerXpGVJqc/get_ServiceLocator_K8rLaojService.php';
-require __DIR__.'/ContainerXpGVJqc/get_ServiceLocator_JzhWNcbService.php';
-require __DIR__.'/ContainerXpGVJqc/get_ServiceLocator_IdpQYdIService.php';
-require __DIR__.'/ContainerXpGVJqc/get_ServiceLocator_HAmcZCCService.php';
-require __DIR__.'/ContainerXpGVJqc/get_ServiceLocator_YUfsgoAService.php';
-require __DIR__.'/ContainerXpGVJqc/get_ServiceLocator_X_XUSKjService.php';
-require __DIR__.'/ContainerXpGVJqc/get_ServiceLocator_UgMf8_IService.php';
-require __DIR__.'/ContainerXpGVJqc/get_ServiceLocator_RQy_OTOService.php';
-require __DIR__.'/ContainerXpGVJqc/get_ServiceLocator_PJHysgXService.php';
-require __DIR__.'/ContainerXpGVJqc/get_ServiceLocator_O2p6Lk7Service.php';
-require __DIR__.'/ContainerXpGVJqc/get_ServiceLocator_Jf7ZX1MService.php';
-require __DIR__.'/ContainerXpGVJqc/get_ServiceLocator_I7OeIahService.php';
-require __DIR__.'/ContainerXpGVJqc/get_ServiceLocator_GqgSDnyService.php';
-require __DIR__.'/ContainerXpGVJqc/get_ServiceLocator_G1XuiGsService.php';
-require __DIR__.'/ContainerXpGVJqc/get_ServiceLocator_FoktWoUService.php';
-require __DIR__.'/ContainerXpGVJqc/get_ServiceLocator_EAMCOjqService.php';
-require __DIR__.'/ContainerXpGVJqc/get_ServiceLocator_BpNZAIPService.php';
-require __DIR__.'/ContainerXpGVJqc/get_ServiceLocator_8eLXVuLService.php';
-require __DIR__.'/ContainerXpGVJqc/get_Security_RequestMatcher_Vhy2oy3Service.php';
-require __DIR__.'/ContainerXpGVJqc/get_Security_RequestMatcher_KLbKLHaService.php';
-require __DIR__.'/ContainerXpGVJqc/get_Security_RequestMatcher_0QxrXJtService.php';
-require __DIR__.'/ContainerXpGVJqc/get_Debug_ValueResolver_Security_UserValueResolverService.php';
-require __DIR__.'/ContainerXpGVJqc/get_Debug_ValueResolver_Security_SecurityTokenValueResolverService.php';
-require __DIR__.'/ContainerXpGVJqc/get_Debug_ValueResolver_Doctrine_Orm_EntityValueResolverService.php';
-require __DIR__.'/ContainerXpGVJqc/get_Debug_ValueResolver_ArgumentResolver_VariadicService.php';
-require __DIR__.'/ContainerXpGVJqc/get_Debug_ValueResolver_ArgumentResolver_SessionService.php';
-require __DIR__.'/ContainerXpGVJqc/get_Debug_ValueResolver_ArgumentResolver_ServiceService.php';
-require __DIR__.'/ContainerXpGVJqc/get_Debug_ValueResolver_ArgumentResolver_RequestPayloadService.php';
-require __DIR__.'/ContainerXpGVJqc/get_Debug_ValueResolver_ArgumentResolver_RequestAttributeService.php';
-require __DIR__.'/ContainerXpGVJqc/get_Debug_ValueResolver_ArgumentResolver_RequestService.php';
-require __DIR__.'/ContainerXpGVJqc/get_Debug_ValueResolver_ArgumentResolver_QueryParameterValueResolverService.php';
-require __DIR__.'/ContainerXpGVJqc/get_Debug_ValueResolver_ArgumentResolver_NotTaggedControllerService.php';
-require __DIR__.'/ContainerXpGVJqc/get_Debug_ValueResolver_ArgumentResolver_DefaultService.php';
-require __DIR__.'/ContainerXpGVJqc/get_Debug_ValueResolver_ArgumentResolver_DatetimeService.php';
-require __DIR__.'/ContainerXpGVJqc/get_Debug_ValueResolver_ArgumentResolver_BackedEnumResolverService.php';
-require __DIR__.'/ContainerXpGVJqc/get_Debug_Security_Voter_Security_Access_SimpleRoleVoterService.php';
-require __DIR__.'/ContainerXpGVJqc/get_Debug_Security_Voter_Security_Access_AuthenticatedVoterService.php';
+(require __DIR__.'/DMD_LaLigaApi_KernelDevDebugContainer.php')->set(\ContainerEB2LqQ8\DMD_LaLigaApi_KernelDevDebugContainer::class, null);
+require __DIR__.'/ContainerEB2LqQ8/EntityManagerGhostAd02211.php';
+require __DIR__.'/ContainerEB2LqQ8/RequestPayloadValueResolverGhostE4c6c7a.php';
+require __DIR__.'/ContainerEB2LqQ8/getValidator_WhenService.php';
+require __DIR__.'/ContainerEB2LqQ8/getValidator_NotCompromisedPasswordService.php';
+require __DIR__.'/ContainerEB2LqQ8/getValidator_NoSuspiciousCharactersService.php';
+require __DIR__.'/ContainerEB2LqQ8/getValidator_ExpressionService.php';
+require __DIR__.'/ContainerEB2LqQ8/getValidator_EmailService.php';
+require __DIR__.'/ContainerEB2LqQ8/getValidator_BuilderService.php';
+require __DIR__.'/ContainerEB2LqQ8/getValidatorService.php';
+require __DIR__.'/ContainerEB2LqQ8/getTwig_Runtime_SecurityCsrfService.php';
+require __DIR__.'/ContainerEB2LqQ8/getTwig_Runtime_HttpkernelService.php';
+require __DIR__.'/ContainerEB2LqQ8/getTwig_Mailer_MessageListenerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getTwigService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSession_Handler_NativeService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSession_FactoryService.php';
+require __DIR__.'/ContainerEB2LqQ8/getServicesResetterService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Validator_UserPasswordService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_UserPasswordHasherService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_UserCheckerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_User_Provider_Concrete_AppUserProviderService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_PasswordHasherFactoryService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Logout_Listener_CsrfTokenClearingService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Listener_UserProviderService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Listener_UserChecker_MainService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Listener_UserChecker_LoginService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Listener_UserChecker_ApiService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Listener_Session_MainService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Listener_PasswordMigratingService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Listener_Main_UserProviderService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Listener_CsrfProtectionService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Listener_CheckAuthenticatorCredentialsService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_HttpUtilsService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_HelperService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Firewall_Map_Context_MainService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Firewall_Map_Context_LoginService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Firewall_Map_Context_DevService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Firewall_Map_Context_ApiService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Firewall_EventDispatcherLocatorService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Csrf_TokenStorageService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Csrf_TokenManagerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_ChannelListenerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Authenticator_ManagersLocatorService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Authenticator_Manager_MainService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Authenticator_Manager_LoginService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Authenticator_Manager_ApiService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Authenticator_Jwt_ApiService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_Authenticator_JsonLogin_LoginService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_AccessMapService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecurity_AccessListenerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSecrets_VaultService.php';
+require __DIR__.'/ContainerEB2LqQ8/getRouting_LoaderService.php';
+require __DIR__.'/ContainerEB2LqQ8/getPropertyInfoService.php';
+require __DIR__.'/ContainerEB2LqQ8/getNelmioApiDoc_Routes_DefaultService.php';
+require __DIR__.'/ContainerEB2LqQ8/getNelmioApiDoc_RenderDocsService.php';
+require __DIR__.'/ContainerEB2LqQ8/getNelmioApiDoc_ModelDescribers_ObjectService.php';
+require __DIR__.'/ContainerEB2LqQ8/getNelmioApiDoc_Generator_DefaultService.php';
+require __DIR__.'/ContainerEB2LqQ8/getNelmioApiDoc_Describers_Route_DefaultService.php';
+require __DIR__.'/ContainerEB2LqQ8/getNelmioApiDoc_Describers_OpenapiPhp_DefaultService.php';
+require __DIR__.'/ContainerEB2LqQ8/getNelmioApiDoc_Describers_ConfigService.php';
+require __DIR__.'/ContainerEB2LqQ8/getNelmioApiDoc_Controller_SwaggerYamlService.php';
+require __DIR__.'/ContainerEB2LqQ8/getNelmioApiDoc_Controller_SwaggerJsonService.php';
+require __DIR__.'/ContainerEB2LqQ8/getMailer_TransportsService.php';
+require __DIR__.'/ContainerEB2LqQ8/getMailer_TransportFactory_SmtpService.php';
+require __DIR__.'/ContainerEB2LqQ8/getMailer_TransportFactory_SendmailService.php';
+require __DIR__.'/ContainerEB2LqQ8/getMailer_TransportFactory_NullService.php';
+require __DIR__.'/ContainerEB2LqQ8/getMailer_TransportFactory_NativeService.php';
+require __DIR__.'/ContainerEB2LqQ8/getMailer_MailerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getLexikJwtAuthentication_KeyLoaderService.php';
+require __DIR__.'/ContainerEB2LqQ8/getLexikJwtAuthentication_JwtManagerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getLexikJwtAuthentication_EncoderService.php';
+require __DIR__.'/ContainerEB2LqQ8/getFragment_Renderer_InlineService.php';
+require __DIR__.'/ContainerEB2LqQ8/getErrorControllerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getDoctrine_UuidGeneratorService.php';
+require __DIR__.'/ContainerEB2LqQ8/getDoctrine_UlidGeneratorService.php';
+require __DIR__.'/ContainerEB2LqQ8/getDoctrine_Orm_Validator_UniqueService.php';
+require __DIR__.'/ContainerEB2LqQ8/getDoctrine_Orm_Listeners_PdoSessionHandlerSchemaListenerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getDoctrine_Orm_Listeners_LockStoreSchemaListenerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getDoctrine_Orm_Listeners_DoctrineTokenProviderSchemaListenerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getDoctrine_Orm_Listeners_DoctrineDbalCacheAdapterSchemaListenerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getDoctrine_Orm_DefaultListeners_AttachEntityListenersService.php';
+require __DIR__.'/ContainerEB2LqQ8/getDoctrine_Orm_DefaultEntityManager_PropertyInfoExtractorService.php';
+require __DIR__.'/ContainerEB2LqQ8/getDoctrine_Orm_DefaultEntityManagerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getDoctrine_Dbal_DefaultConnection_EventManagerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getDoctrine_Dbal_DefaultConnectionService.php';
+require __DIR__.'/ContainerEB2LqQ8/getDoctrineService.php';
+require __DIR__.'/ContainerEB2LqQ8/getDebug_Security_Voter_VoteListenerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getDebug_Security_Firewall_Authenticator_MainService.php';
+require __DIR__.'/ContainerEB2LqQ8/getDebug_Security_Firewall_Authenticator_LoginService.php';
+require __DIR__.'/ContainerEB2LqQ8/getDebug_Security_Firewall_Authenticator_ApiService.php';
+require __DIR__.'/ContainerEB2LqQ8/getDebug_Security_EventDispatcher_LoginService.php';
+require __DIR__.'/ContainerEB2LqQ8/getDebug_Security_EventDispatcher_ApiService.php';
+require __DIR__.'/ContainerEB2LqQ8/getDebug_ErrorHandlerConfiguratorService.php';
+require __DIR__.'/ContainerEB2LqQ8/getController_TemplateAttributeListenerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getContainer_GetRoutingConditionServiceService.php';
+require __DIR__.'/ContainerEB2LqQ8/getContainer_EnvVarProcessorsLocatorService.php';
+require __DIR__.'/ContainerEB2LqQ8/getContainer_EnvVarProcessorService.php';
+require __DIR__.'/ContainerEB2LqQ8/getCache_ValidatorExpressionLanguageService.php';
+require __DIR__.'/ContainerEB2LqQ8/getCache_SystemClearerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getCache_SystemService.php';
+require __DIR__.'/ContainerEB2LqQ8/getCache_SecurityIsGrantedAttributeExpressionLanguageService.php';
+require __DIR__.'/ContainerEB2LqQ8/getCache_GlobalClearerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getCache_AppClearerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getCache_AppService.php';
+require __DIR__.'/ContainerEB2LqQ8/getTemplateControllerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getRedirectControllerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getHandleUpdateUserService.php';
+require __DIR__.'/ContainerEB2LqQ8/getHandleRegistrationService.php';
+require __DIR__.'/ContainerEB2LqQ8/getHandleGetNotificationsService.php';
+require __DIR__.'/ContainerEB2LqQ8/getHandleDeleteUserService.php';
+require __DIR__.'/ContainerEB2LqQ8/getUserSaverService.php';
+require __DIR__.'/ContainerEB2LqQ8/getHandleGetAllFacilitiesService.php';
+require __DIR__.'/ContainerEB2LqQ8/getHandleCreateSeasonService.php';
+require __DIR__.'/ContainerEB2LqQ8/getHandleCreateGameCalendarRequestService.php';
+require __DIR__.'/ContainerEB2LqQ8/getHandleCreateFacilitiesService.php';
+require __DIR__.'/ContainerEB2LqQ8/getHandleAddTeamService.php';
+require __DIR__.'/ContainerEB2LqQ8/getHandleUpdateLeagueService.php';
+require __DIR__.'/ContainerEB2LqQ8/getHandleNewJoinLeagueRequestService.php';
+require __DIR__.'/ContainerEB2LqQ8/getHandleCaptainRequestService.php';
+require __DIR__.'/ContainerEB2LqQ8/getHandleGetLeagueByIdService.php';
+require __DIR__.'/ContainerEB2LqQ8/getHandleGetAllLeaguesService.php';
+require __DIR__.'/ContainerEB2LqQ8/getHandleDeclineJoinLeagueRequestService.php';
+require __DIR__.'/ContainerEB2LqQ8/getHandleCreateLeagueService.php';
+require __DIR__.'/ContainerEB2LqQ8/getHandleAcceptJoinLeagueRequestService.php';
+require __DIR__.'/ContainerEB2LqQ8/getNotificationFactoryService.php';
+require __DIR__.'/ContainerEB2LqQ8/getEmailSenderService.php';
+require __DIR__.'/ContainerEB2LqQ8/getAuthorizeRequestService.php';
+require __DIR__.'/ContainerEB2LqQ8/getUserRepositoryService.php';
+require __DIR__.'/ContainerEB2LqQ8/getTeamRepositoryService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSeasonRepositoryService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSeasonDataRepositoryService.php';
+require __DIR__.'/ContainerEB2LqQ8/getPlayerRepositoryService.php';
+require __DIR__.'/ContainerEB2LqQ8/getNotificationRepositoryService.php';
+require __DIR__.'/ContainerEB2LqQ8/getLogRepositoryService.php';
+require __DIR__.'/ContainerEB2LqQ8/getLeagueRepositoryService.php';
+require __DIR__.'/ContainerEB2LqQ8/getGameRepositoryService.php';
+require __DIR__.'/ContainerEB2LqQ8/getFileRepositoryService.php';
+require __DIR__.'/ContainerEB2LqQ8/getFacilityRepositoryService.php';
+require __DIR__.'/ContainerEB2LqQ8/getCustomRoleRepositoryService.php';
+require __DIR__.'/ContainerEB2LqQ8/getExceptionListenerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getUserControllerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getSeasonControllerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getNotificationControllerService.php';
+require __DIR__.'/ContainerEB2LqQ8/getLeagueControllerService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_ServiceLocator_Y4Zrx_Service.php';
+require __DIR__.'/ContainerEB2LqQ8/get_ServiceLocator_K8rLaojService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_ServiceLocator_JzhWNcbService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_ServiceLocator_IdpQYdIService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_ServiceLocator_HAmcZCCService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_ServiceLocator_G3NSLSCService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_ServiceLocator_BNYvrCqService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_ServiceLocator_YUfsgoAService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_ServiceLocator_X_XUSKjService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_ServiceLocator_UgMf8_IService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_ServiceLocator_RQy_OTOService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_ServiceLocator_PJHysgXService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_ServiceLocator_O2p6Lk7Service.php';
+require __DIR__.'/ContainerEB2LqQ8/get_ServiceLocator_Kun9UOkService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_ServiceLocator_Jf7ZX1MService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_ServiceLocator_GqgSDnyService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_ServiceLocator_G1XuiGsService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_ServiceLocator_FoktWoUService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_ServiceLocator_EAMCOjqService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_ServiceLocator_BpNZAIPService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_ServiceLocator_8eLXVuLService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_Security_RequestMatcher_Vhy2oy3Service.php';
+require __DIR__.'/ContainerEB2LqQ8/get_Security_RequestMatcher_KLbKLHaService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_Security_RequestMatcher_0QxrXJtService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_Debug_ValueResolver_Security_UserValueResolverService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_Debug_ValueResolver_Security_SecurityTokenValueResolverService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_Debug_ValueResolver_Doctrine_Orm_EntityValueResolverService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_Debug_ValueResolver_ArgumentResolver_VariadicService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_Debug_ValueResolver_ArgumentResolver_SessionService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_Debug_ValueResolver_ArgumentResolver_ServiceService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_Debug_ValueResolver_ArgumentResolver_RequestPayloadService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_Debug_ValueResolver_ArgumentResolver_RequestAttributeService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_Debug_ValueResolver_ArgumentResolver_RequestService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_Debug_ValueResolver_ArgumentResolver_QueryParameterValueResolverService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_Debug_ValueResolver_ArgumentResolver_NotTaggedControllerService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_Debug_ValueResolver_ArgumentResolver_DefaultService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_Debug_ValueResolver_ArgumentResolver_DatetimeService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_Debug_ValueResolver_ArgumentResolver_BackedEnumResolverService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_Debug_Security_Voter_Security_Access_SimpleRoleVoterService.php';
+require __DIR__.'/ContainerEB2LqQ8/get_Debug_Security_Voter_Security_Access_AuthenticatedVoterService.php';
$classes = [];
$classes[] = 'Symfony\Bundle\FrameworkBundle\FrameworkBundle';
@@ -253,9 +257,12 @@ $classes[] = 'DMD\LaLigaApi\Service\League\joinTeam\HandleCaptainRequest';
$classes[] = 'DMD\LaLigaApi\Service\League\newJoinLeagueRequest\HandleNewJoinLeagueRequest';
$classes[] = 'DMD\LaLigaApi\Service\League\updateLeague\HandleUpdateLeague';
$classes[] = 'DMD\LaLigaApi\Service\Season\addTeam\HandleAddTeam';
+$classes[] = 'DMD\LaLigaApi\Service\Season\createFacilities\HandleCreateFacilities';
+$classes[] = 'DMD\LaLigaApi\Service\Common\FacilityFactory';
$classes[] = 'DMD\LaLigaApi\Service\Season\createGameCalendar\HandleCreateGameCalendarRequest';
$classes[] = 'DMD\LaLigaApi\Service\Season\createSeason\HandleCreateSeason';
$classes[] = 'DMD\LaLigaApi\Service\Season\SeasonFactory';
+$classes[] = 'DMD\LaLigaApi\Service\Season\getAllFacilities\HandleGetAllFacilities';
$classes[] = 'DMD\LaLigaApi\Service\User\Handlers\UserSaver';
$classes[] = 'DMD\LaLigaApi\Service\User\Handlers\delete\HandleDeleteUser';
$classes[] = 'DMD\LaLigaApi\Service\User\Handlers\getNotifications\HandleGetNotifications';
diff --git a/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.xml b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.xml
index aafdc384..c885fd21 100644
--- a/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.xml
+++ b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.xml
@@ -190,7 +190,7 @@
true
%env(JWT_PASSPHRASE)%
- 1800
+ 18000
0
username
false
@@ -352,6 +352,7 @@
+
@@ -359,7 +360,6 @@
-
@@ -370,12 +370,6 @@
-
-
-
-
-
-
@@ -423,6 +417,14 @@
+
+
+
+
+
+
+
+
@@ -437,6 +439,11 @@
+
+
+
+
+
@@ -507,7 +514,7 @@
controller.argument_value_resolver
-
+
controller.argument_value_resolver
@@ -1845,7 +1852,7 @@
-
+
@@ -2617,7 +2624,7 @@
- mysql://mamb:lakers06@casa.dyb-tech.com:3306/laliga?serverVersion=10.5.22-MariaDB&charset=utf8mb4
+ mysql://root:root@localhost:3307/la_liga?serverVersion=7.4.16&charset=utf8mb4
pdo_mysql
localhost
null
@@ -4268,7 +4275,7 @@
openssl
RS256
- 1800
+ 18000
0
The "%service_id%" is deprecated since version 2.5 and will be removed in 5.0, use "lexik_jwt_authentication.jws_provider.lcobucci" instead.
@@ -4303,7 +4310,7 @@
openssl
RS256
- 1800
+ 18000
0
false
@@ -5366,6 +5373,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
@@ -5398,7 +5417,7 @@
-
+
@@ -5413,6 +5432,8 @@
+
+
@@ -5433,6 +5454,8 @@
+
+
@@ -6847,7 +6870,7 @@
-
+
@@ -6855,7 +6878,7 @@
-
+
@@ -6884,6 +6907,8 @@
+
+
diff --git a/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.xml.meta b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.xml.meta
index b0542bed..502e12a3 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 29f403b8..7cb1964a 100644
--- a/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainerCompiler.log
+++ b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainerCompiler.log
@@ -231,7 +231,7 @@ Symfony\Component\DependencyInjection\Compiler\RemovePrivateAliasesPass: Removed
Symfony\Component\DependencyInjection\Compiler\RemovePrivateAliasesPass: Removed service ".service_locator.9L433w3"; reason: private alias.
Symfony\Component\DependencyInjection\Compiler\RemovePrivateAliasesPass: Removed service ".service_locator.o.uf2zi"; reason: private alias.
Symfony\Component\DependencyInjection\Compiler\RemovePrivateAliasesPass: Removed service ".service_locator.C6ESU5k"; reason: private alias.
-Symfony\Component\DependencyInjection\Compiler\RemovePrivateAliasesPass: Removed service ".service_locator.HB35.IM"; reason: private alias.
+Symfony\Component\DependencyInjection\Compiler\RemovePrivateAliasesPass: Removed service ".service_locator.0LkE2AA"; reason: private alias.
Symfony\Component\DependencyInjection\Compiler\RemovePrivateAliasesPass: Removed service ".service_locator.BFrsqsn"; reason: private alias.
Symfony\Component\DependencyInjection\Compiler\RemovePrivateAliasesPass: Removed service ".service_locator.LMuqDDe"; reason: private alias.
Symfony\Component\DependencyInjection\Compiler\RemovePrivateAliasesPass: Removed service ".service_locator.jUv.zyj"; reason: private alias.
@@ -259,6 +259,8 @@ Symfony\Component\DependencyInjection\Compiler\RemovePrivateAliasesPass: Removed
Symfony\Component\DependencyInjection\Compiler\RemovePrivateAliasesPass: Removed service ".service_locator.H6m0t47"; reason: private alias.
Symfony\Component\DependencyInjection\Compiler\RemovePrivateAliasesPass: Removed service ".service_locator.pR4c.1j"; reason: private alias.
Symfony\Component\DependencyInjection\Compiler\RemovePrivateAliasesPass: Removed service ".service_locator.odlcL3K"; reason: private alias.
+Symfony\Component\DependencyInjection\Compiler\RemovePrivateAliasesPass: Removed service ".service_locator.TcLmKeC"; reason: private alias.
+Symfony\Component\DependencyInjection\Compiler\RemovePrivateAliasesPass: Removed service ".service_locator.Yh6vd4o"; reason: private alias.
Symfony\Component\DependencyInjection\Compiler\RemovePrivateAliasesPass: Removed service ".service_locator.7sCphGU"; reason: private alias.
Symfony\Component\DependencyInjection\Compiler\RemovePrivateAliasesPass: Removed service ".service_locator.n3S8NlR"; reason: private alias.
Symfony\Component\DependencyInjection\Compiler\RemovePrivateAliasesPass: Removed service ".service_locator.HYwFH6j"; reason: private alias.
@@ -495,8 +497,6 @@ 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.
@@ -578,6 +578,7 @@ Symfony\Component\DependencyInjection\Compiler\InlineServiceDefinitionsPass: Inl
Symfony\Component\DependencyInjection\Compiler\InlineServiceDefinitionsPass: Inlined service ".service_locator.O2p6Lk7.DMD\LaLigaApi\Controller\NotificationController" to "DMD\LaLigaApi\Controller\NotificationController".
Symfony\Component\DependencyInjection\Compiler\InlineServiceDefinitionsPass: Inlined service ".service_locator.O2p6Lk7.DMD\LaLigaApi\Controller\SeasonController" to "DMD\LaLigaApi\Controller\SeasonController".
Symfony\Component\DependencyInjection\Compiler\InlineServiceDefinitionsPass: Inlined service ".service_locator.O2p6Lk7.DMD\LaLigaApi\Controller\UserController" to "DMD\LaLigaApi\Controller\UserController".
+Symfony\Component\DependencyInjection\Compiler\InlineServiceDefinitionsPass: Inlined service "DMD\LaLigaApi\Service\Common\FacilityFactory" to "DMD\LaLigaApi\Service\Season\createFacilities\HandleCreateFacilities".
Symfony\Component\DependencyInjection\Compiler\InlineServiceDefinitionsPass: Inlined service "DMD\LaLigaApi\Service\Season\SeasonFactory" to "DMD\LaLigaApi\Service\Season\createSeason\HandleCreateSeason".
Symfony\Component\DependencyInjection\Compiler\InlineServiceDefinitionsPass: Inlined service "clock" to "argument_resolver.datetime".
Symfony\Component\DependencyInjection\Compiler\InlineServiceDefinitionsPass: Inlined service "twig.error_renderer.html" to "error_controller".
diff --git a/var/cache/dev/doctrine/orm/Proxies/__CG__DMDLaLigaApiEntityLeague.php b/var/cache/dev/doctrine/orm/Proxies/__CG__DMDLaLigaApiEntityLeague.php
new file mode 100644
index 00000000..479b09ea
--- /dev/null
+++ b/var/cache/dev/doctrine/orm/Proxies/__CG__DMDLaLigaApiEntityLeague.php
@@ -0,0 +1,55 @@
+ [parent::class, 'active', null],
+ "\0".parent::class."\0".'blockedMatchDates' => [parent::class, 'blockedMatchDates', null],
+ "\0".parent::class."\0".'city' => [parent::class, 'city', null],
+ "\0".parent::class."\0".'createdAt' => [parent::class, 'createdAt', null],
+ "\0".parent::class."\0".'description' => [parent::class, 'description', null],
+ "\0".parent::class."\0".'id' => [parent::class, 'id', null],
+ "\0".parent::class."\0".'isPublic' => [parent::class, 'isPublic', null],
+ "\0".parent::class."\0".'logo' => [parent::class, 'logo', null],
+ "\0".parent::class."\0".'matchesBetweenTeams' => [parent::class, 'matchesBetweenTeams', null],
+ "\0".parent::class."\0".'name' => [parent::class, 'name', null],
+ "\0".parent::class."\0".'seasons' => [parent::class, 'seasons', null],
+ 'active' => [parent::class, 'active', null],
+ 'blockedMatchDates' => [parent::class, 'blockedMatchDates', null],
+ 'city' => [parent::class, 'city', null],
+ 'createdAt' => [parent::class, 'createdAt', null],
+ 'description' => [parent::class, 'description', null],
+ 'id' => [parent::class, 'id', null],
+ 'isPublic' => [parent::class, 'isPublic', null],
+ 'logo' => [parent::class, 'logo', null],
+ 'matchesBetweenTeams' => [parent::class, 'matchesBetweenTeams', null],
+ 'name' => [parent::class, 'name', null],
+ 'seasons' => [parent::class, 'seasons', null],
+ ];
+
+ public function __isInitialized(): bool
+ {
+ return isset($this->lazyObjectState) && $this->isLazyObjectInitialized();
+ }
+
+ public function __serialize(): array
+ {
+ $properties = (array) $this;
+ unset($properties["\0" . self::class . "\0lazyObjectState"]);
+
+ return $properties;
+ }
+}
diff --git a/var/cache/dev/url_matching_routes.php b/var/cache/dev/url_matching_routes.php
index 112f4b64..0fd3aa9b 100644
--- a/var/cache/dev/url_matching_routes.php
+++ b/var/cache/dev/url_matching_routes.php
@@ -32,11 +32,15 @@ return [
.'|create(*:168)'
.'|([^/]++)/(?'
.'|team(*:192)'
- .'|calendar(*:208)'
+ .'|facilities(?'
+ .'|/create(*:220)'
+ .'|(*:228)'
+ .')'
+ .'|calendar(*:245)'
.')'
.')'
.')'
- .'|(*:219)'
+ .'|(*:256)'
.')'
.')/?$}sDu',
],
@@ -48,8 +52,10 @@ return [
144 => [[['_route' => 'app_decline_join_request', '_controller' => 'DMD\\LaLigaApi\\Controller\\LeagueController::declineJoinRequest'], ['leagueId', 'captainId'], ['GET' => 0], null, false, true, null]],
168 => [[['_route' => 'app_add_season', '_controller' => 'DMD\\LaLigaApi\\Controller\\SeasonController::addSeason'], ['leagueId'], ['POST' => 0], null, false, false, null]],
192 => [[['_route' => 'app_add_team', '_controller' => 'DMD\\LaLigaApi\\Controller\\SeasonController::addTeam'], ['leagueId', 'seasonId'], ['POST' => 0], null, false, false, null]],
- 208 => [[['_route' => 'app_create_calendar', '_controller' => 'DMD\\LaLigaApi\\Controller\\SeasonController::createCalendar'], ['leagueId', 'seasonId'], ['POST' => 0], null, false, false, null]],
- 219 => [
+ 220 => [[['_route' => 'app_create_facilities', '_controller' => 'DMD\\LaLigaApi\\Controller\\SeasonController::createFacilities'], ['leagueId', 'seasonId'], ['POST' => 0], null, false, false, null]],
+ 228 => [[['_route' => 'app_get_all_facilities', '_controller' => 'DMD\\LaLigaApi\\Controller\\SeasonController::getAllFacilities'], ['leagueId', 'seasonId'], ['GET' => 0], null, true, false, null]],
+ 245 => [[['_route' => 'app_create_calendar', '_controller' => 'DMD\\LaLigaApi\\Controller\\SeasonController::createCalendar'], ['leagueId', 'seasonId'], ['POST' => 0], null, false, false, null]],
+ 256 => [
[['_route' => 'app_get_league', '_controller' => 'DMD\\LaLigaApi\\Controller\\LeagueController::getLeagueById'], ['leagueId'], ['GET' => 0], null, false, true, null],
[null, null, null, null, false, false, 0],
],