diff --git a/migrations/Version20240602203312.php b/migrations/Version20240602203312.php new file mode 100644 index 00000000..3bcab9bd --- /dev/null +++ b/migrations/Version20240602203312.php @@ -0,0 +1,33 @@ +addSql('ALTER TABLE league DROP points_per_win, DROP points_per_draw, DROP points_per_loss'); + $this->addSql('ALTER TABLE season ADD points_per_win INT DEFAULT NULL, ADD points_per_draw INT DEFAULT NULL, ADD points_per_loss INT DEFAULT NULL'); + } + + public function down(Schema $schema): void + { + // this down() migration is auto-generated, please modify it to your needs + $this->addSql('ALTER TABLE league ADD points_per_win INT DEFAULT NULL, ADD points_per_draw INT DEFAULT NULL, ADD points_per_loss INT DEFAULT NULL'); + $this->addSql('ALTER TABLE season DROP points_per_win, DROP points_per_draw, DROP points_per_loss'); + } +} diff --git a/src/Dto/LeagueDto.php b/src/Dto/LeagueDto.php index 860107e3..8167bbfa 100644 --- a/src/Dto/LeagueDto.php +++ b/src/Dto/LeagueDto.php @@ -13,9 +13,6 @@ class LeagueDto public string $city; public string $logo; public string $description; - public int $pointsPerWin; - public int $pointsPerDraw; - public int $pointsPerLoss; public int $matchesBetweenTeams; public array $blockedMatchDates; public bool $active; @@ -41,9 +38,6 @@ class LeagueDto 'city' => $this->city ?? null, 'logo' => $this->logo ?? null, 'description' => $this->description ?? null, - 'pointsPerWin' => $this->pointsPerWin ?? null, - 'pointsPerDraw' => $this->pointsPerDraw ?? null, - 'pointsPerLoss' => $this->pointsPerLoss ?? null, 'matchesBetweenTeams' => $this->matchesBetweenTeams ?? [], 'blockedMatchDates' => $this->blockedMatchDates ?? [], 'active' => $this->active ?? null, @@ -91,18 +85,6 @@ class LeagueDto { $this->description = $dataList['description']; } - if (isset($dataList['pointsPerWin'])) - { - $this->pointsPerWin = (int) $dataList['pointsPerWin']; - } - if (isset($dataList['pointsPerDraw'])) - { - $this->pointsPerDraw = (int) $dataList['pointsPerDraw']; - } - if (isset($dataList['pointsPerLoss'])) - { - $this->pointsPerLoss = (int) $dataList['pointsPerLoss']; - } if (isset($dataList['matchesBetweenTeams'])) { $this->matchesBetweenTeams = (int) $dataList['matchesBetweenTeams']; @@ -152,18 +134,6 @@ class LeagueDto { $this->logo = $leagueObj->getLogo(); } - if ($leagueObj->getPointsPerWin() !== null) - { - $this->pointsPerWin = $leagueObj->getPointsPerWin(); - } - if ($leagueObj->getPointsPerDraw() !== null) - { - $this->pointsPerDraw = $leagueObj->getPointsPerDraw(); - } - if ($leagueObj->getPointsPerLoss() !== null) - { - $this->pointsPerLoss = $leagueObj->getPointsPerLoss(); - } if ($leagueObj->getMatchesBetweenTeams() !== null) { $this->matchesBetweenTeams = $leagueObj->getMatchesBetweenTeams(); @@ -204,30 +174,7 @@ class LeagueDto { $this->validationErrors[] = 'La localidad no puede estar vacía.'; } - if (empty($this->pointsPerWin)) - { - $this->validationErrors[] = 'Los puntos por partido ganado no pueden estar vacíos.'; - } - if ( - isset($this->pointsPerDraw, $this->pointsPerWin, $this->pointsPerLoss) && - (($this->pointsPerWin <= $this->pointsPerDraw) || - ($this->pointsPerWin <= $this->pointsPerLoss)) - ) - { - $this->validationErrors[] = 'Los puntos por partido ganado deben ser superiores a los puntos por empate y por perdida.'; - } - if (isset($this->pointsPerDraw, $this->pointsPerWin) && ($this->pointsPerDraw > $this->pointsPerWin)) - { - $this->validationErrors[] = 'Los puntos por empate deben ser inferiores a los puntos por partido ganado.'; - } - if (isset($this->pointsPerDraw, $this->pointsPerLoss) && ($this->pointsPerDraw < $this->pointsPerLoss)) - { - $this->validationErrors[] = 'Los puntos por empate deben ser superiores a los puntos por partido perdido.'; - } - if (isset($this->pointsPerDraw, $this->pointsPerWin, $this->pointsPerLoss) && ($this->pointsPerWin + $this->pointsPerDraw + $this->pointsPerLoss > 20)) - { - $this->validationErrors[] = 'La suma de los puntos por partidos ganados, perdidos y empatados no puede ser superior a 20.'; - } + if (!empty($this->validationErrors)) { throw new ValidationException($this->validationErrors); diff --git a/src/Dto/SeasonDto.php b/src/Dto/SeasonDto.php index 2d68c5a5..dbcbadca 100644 --- a/src/Dto/SeasonDto.php +++ b/src/Dto/SeasonDto.php @@ -12,6 +12,9 @@ class SeasonDto public array $teamDtoList; public array $facilityDtoList; public int $leagueId; + public int $pointsPerWin; + public int $pointsPerLoss; + public int $pointsPerDraw; public array $gameDtoList; public array $seasonDataDtoList; public bool $active; @@ -59,6 +62,18 @@ class SeasonDto $this->dateStart = $dateStart; } } + if (isset($dataList['pointsPerWin'])) + { + $this->pointsPerWin = (int) $dataList['pointsPerWin']; + } + if (isset($dataList['pointsPerDraw'])) + { + $this->pointsPerDraw = (int) $dataList['pointsPerDraw']; + } + if (isset($dataList['pointsPerLoss'])) + { + $this->pointsPerLoss = (int) $dataList['pointsPerLoss']; + } if (isset($dataList['active'])) { $this->active = $dataList['active']; @@ -118,6 +133,30 @@ class SeasonDto */ public function validate(): void { + if (empty($this->pointsPerWin)) + { + $this->validationErrors[] = 'Los puntos por partido ganado no pueden estar vacíos.'; + } + if ( + isset($this->pointsPerDraw, $this->pointsPerWin, $this->pointsPerLoss) && + (($this->pointsPerWin <= $this->pointsPerDraw) || + ($this->pointsPerWin <= $this->pointsPerLoss)) + ) + { + $this->validationErrors[] = 'Los puntos por partido ganado deben ser superiores a los puntos por empate y por perdida.'; + } + if (isset($this->pointsPerDraw, $this->pointsPerWin) && ($this->pointsPerDraw > $this->pointsPerWin)) + { + $this->validationErrors[] = 'Los puntos por empate deben ser inferiores a los puntos por partido ganado.'; + } + if (isset($this->pointsPerDraw, $this->pointsPerLoss) && ($this->pointsPerDraw < $this->pointsPerLoss)) + { + $this->validationErrors[] = 'Los puntos por empate deben ser superiores a los puntos por partido perdido.'; + } + if (isset($this->pointsPerDraw, $this->pointsPerWin, $this->pointsPerLoss) && ($this->pointsPerWin + $this->pointsPerDraw + $this->pointsPerLoss > 20)) + { + $this->validationErrors[] = 'La suma de los puntos por partidos ganados, perdidos y empatados no puede ser superior a 20.'; + } if (!empty($this->validationErrors)) { throw new ValidationException($this->validationErrors); diff --git a/src/Entity/League.php b/src/Entity/League.php index a6e884bc..c260d9f1 100644 --- a/src/Entity/League.php +++ b/src/Entity/League.php @@ -35,18 +35,9 @@ class League #[ORM\Column(nullable: true)] private ?\DateTimeImmutable $createdAt = null; - #[ORM\Column(nullable: true)] - private ?int $pointsPerWin = null; - - #[ORM\Column(nullable: true)] - private ?int $pointsPerDraw = null; - #[ORM\Column(length: 255, nullable: true)] private ?string $city = null; - #[ORM\Column(nullable: true)] - private ?int $pointsPerLoss = null; - #[ORM\Column(nullable: true)] private ?int $matchesBetweenTeams = null; @@ -158,30 +149,6 @@ class League $this->createdAt = new \DateTimeImmutable('now', $timezone); } - public function getPointsPerWin(): ?int - { - return $this->pointsPerWin; - } - - public function setPointsPerWin(?int $pointsPerWin): static - { - $this->pointsPerWin = $pointsPerWin; - - return $this; - } - - public function getPointsPerDraw(): ?int - { - return $this->pointsPerDraw; - } - - public function setPointsPerDraw(?int $pointsPerDraw): static - { - $this->pointsPerDraw = $pointsPerDraw; - - return $this; - } - public function getCity(): ?string { return $this->city; @@ -194,18 +161,6 @@ class League return $this; } - public function getPointsPerLoss(): ?int - { - return $this->pointsPerLoss; - } - - public function setPointsPerLoss(?int $pointsPerLoss): static - { - $this->pointsPerLoss = $pointsPerLoss; - - return $this; - } - public function getMatchesBetweenTeams(): ?int { return $this->matchesBetweenTeams; diff --git a/src/Entity/Season.php b/src/Entity/Season.php index 0da8cc60..d7492feb 100644 --- a/src/Entity/Season.php +++ b/src/Entity/Season.php @@ -44,6 +44,15 @@ class Season #[ORM\OneToMany(mappedBy: 'season', targetEntity: File::class)] private Collection $files; + #[ORM\Column(nullable: true)] + private ?int $pointsPerWin = null; + + #[ORM\Column(nullable: true)] + private ?int $pointsPerDraw = null; + + #[ORM\Column(nullable: true)] + private ?int $pointsPerLoss = null; + public function __construct() { $this->teams = new ArrayCollection(); @@ -242,4 +251,40 @@ class Season return $this; } + + public function getPointsPerWin(): ?int + { + return $this->pointsPerWin; + } + + public function setPointsPerWin(?int $pointsPerWin): static + { + $this->pointsPerWin = $pointsPerWin; + + return $this; + } + + public function getPointsPerDraw(): ?int + { + return $this->pointsPerDraw; + } + + public function setPointsPerDraw(?int $pointsPerDraw): static + { + $this->pointsPerDraw = $pointsPerDraw; + + return $this; + } + + public function getPointsPerLoss(): ?int + { + return $this->pointsPerLoss; + } + + public function setPointsPerLoss(?int $pointsPerLoss): static + { + $this->pointsPerLoss = $pointsPerLoss; + + return $this; + } } diff --git a/src/Service/Common/AuthorizeRequest.php b/src/Service/Common/AuthorizeRequest.php index 33898c11..5bfc9d89 100644 --- a/src/Service/Common/AuthorizeRequest.php +++ b/src/Service/Common/AuthorizeRequest.php @@ -28,58 +28,55 @@ class AuthorizeRequest throw new HttpException(Response::HTTP_FORBIDDEN, "Unauthorized."); } $customRole = $this->customRoleRepository->findBy([ - 'name' => $leagueId . Role::LEAGUE_PRESIDENT->value, - 'userEntity' => $userEntity + 'name' => Role::LEAGUE_PRESIDENT->value, + 'user' => $userEntity, + 'entityId' => $leagueId ]); if (is_null($customRole)) { - throw new HttpException(Response::HTTP_FORBIDDEN, "Usuario no tiene permiso para editar la liga."); + throw new HttpException(Response::HTTP_FORBIDDEN, "Forbidden"); } } public function teamCaptainRequest(int $leagueId, $teamId): User { - $userEntity = $this->security->getUser(); - if (!$userEntity instanceof User) + $requestingUserEntity = $this->security->getUser(); + if (!$requestingUserEntity instanceof User) { throw new HttpException(Response::HTTP_FORBIDDEN, "Unauthorized"); } $captainCustomRole = $this->customRoleRepository->findBy([ - 'name' => $teamId . Role::TEAM_CAPTAIN->value, + 'name' => Role::TEAM_CAPTAIN->value, + 'entityId' => $teamId ]); if (!is_null($captainCustomRole)) { throw new HttpException(Response::HTTP_FORBIDDEN, "Equipo con id: $teamId ya tiene capitan"); } $leagueMemberRole = $this->customRoleRepository->findBy([ - 'name' => $leagueId . Role::LEAGUE_MEMBER->value, - 'user' => $userEntity + 'name' => Role::LEAGUE_MEMBER->value, + 'user' => $requestingUserEntity, + 'entityId' => $leagueId ]); if (is_null($leagueMemberRole)) { - throw new HttpException(Response::HTTP_FORBIDDEN, "Usuario no es miembro de la liga"); + throw new HttpException(Response::HTTP_FORBIDDEN, "Debes ser miembro de la liga antes de solicitar ser capitan."); } - return $userEntity; + return $requestingUserEntity; } public function isLeaguePresident(int $leagueId, User $leagueAdmin): bool { - $adminRoles = $leagueAdmin->getCustomRoles(); - if (!$adminRoles->isEmpty()) + $customRole = $this->customRoleRepository->findBy([ + 'name' => Role::LEAGUE_PRESIDENT->value, + 'entityId' => $leagueId, + 'user' => $leagueAdmin + ] + ); + if (is_null($customRole)) { - foreach ($adminRoles as $adminRoleEntity) - { - $explodedRole = explode('_', $adminRoleEntity->getName()); - if ( - strtolower($explodedRole[1]) == 'league' && - strtolower($explodedRole[2]) == 'president' && - $explodedRole[0] == $leagueId - ) - { - return true; - } - } + throw new HttpException(Response::HTTP_FORBIDDEN,'Forbidden.'); } - throw new HttpException(Response::HTTP_NOT_FOUND,'Forbidden.'); + return true; } } \ No newline at end of file diff --git a/src/Service/League/LeagueFactory.php b/src/Service/League/LeagueFactory.php index 3156c39b..c9462e0e 100644 --- a/src/Service/League/LeagueFactory.php +++ b/src/Service/League/LeagueFactory.php @@ -46,7 +46,7 @@ class LeagueFactory { $leagueEntity->setCity($leagueDto->city); } - if (!empty($leagueDto->isPublic)) + if (isset($leagueDto->isPublic)) { $leagueEntity->setIsPublic($leagueDto->isPublic); } diff --git a/src/Service/Season/SeasonFactory.php b/src/Service/Season/SeasonFactory.php index 68f76035..65ca29ff 100644 --- a/src/Service/Season/SeasonFactory.php +++ b/src/Service/Season/SeasonFactory.php @@ -15,6 +15,18 @@ class SeasonFactory { $seasonEntity->setDateStart($seasonDto->dateStart); } + if (isset($seasonDto->pointsPerWin)) + { + $seasonEntity->setPointsPerWin($seasonDto->pointsPerWin); + } + if (isset($seasonDto->pointsPerDraw)) + { + $seasonEntity->setPointsPerDraw($seasonDto->pointsPerDraw); + } + if (isset($seasonDto->pointsPerLoss)) + { + $seasonEntity->setPointsPerLoss($seasonDto->pointsPerLoss); + } return $seasonEntity; } } \ No newline at end of file diff --git a/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.php b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.php index bcaf3774..35a872ac 100644 --- a/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.php +++ b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.php @@ -16,6 +16,6 @@ if (!\class_exists(DMD_LaLigaApi_KernelDevDebugContainer::class, false)) { return new \ContainerXJAXgNH\DMD_LaLigaApi_KernelDevDebugContainer([ 'container.build_hash' => 'XJAXgNH', - 'container.build_id' => 'b34b26d0', - 'container.build_time' => 1716716112, + 'container.build_id' => 'c4d82904', + 'container.build_time' => 1717360279, ], __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 6bf85e16..bc859275 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 15f0aff5..7d3e0982 100644 --- a/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.preload.php +++ b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainer.preload.php @@ -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 48a8c120..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 @@ -587,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 @@ -597,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 @@ -1147,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 @@ -1163,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 @@ -1173,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 @@ -1183,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 @@ -1193,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 @@ -1203,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 @@ -1213,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 @@ -1232,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 @@ -1940,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 @@ -2097,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 @@ -2181,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 @@ -2447,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 @@ -2870,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 @@ -3463,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 @@ -3479,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 @@ -4453,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 b853910d..9bed8f1e 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_KernelDevDebugContainerDeprecations.log b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainerDeprecations.log index 7611e987..a746795b 100644 --- a/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainerDeprecations.log +++ b/var/cache/dev/DMD_LaLigaApi_KernelDevDebugContainerDeprecations.log @@ -1 +1 @@ -a:2:{i:0;a:6:{s:4:"type";i:16384;s:7:"message";s:61:"Please install the "intl" PHP extension for best performance.";s:4:"file";s:120:"D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\vendor\symfony\framework-bundle\DependencyInjection\FrameworkExtension.php";s:4:"line";i:295;s:5:"trace";a:1:{i:0;a:5:{s:4:"file";s:126:"D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\vendor\symfony\dependency-injection\Compiler\MergeExtensionConfigurationPass.php";s:4:"line";i:76;s:8:"function";s:4:"load";s:5:"class";s:69:"Symfony\Bundle\FrameworkBundle\DependencyInjection\FrameworkExtension";s:4:"type";s:2:"->";}}s:5:"count";i:1;}i:1;a:6:{s:4:"type";i:16384;s:7:"message";s:105:"Since symfony/security-bundle 6.2: The "enable_authenticator_manager" option at "security" is deprecated.";s:4:"file";s:92:"D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\vendor\symfony\config\Definition\ArrayNode.php";s:4:"line";i:248;s:5:"trace";a:1:{i:0;a:5:{s:4:"file";s:91:"D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\vendor\symfony\config\Definition\BaseNode.php";s:4:"line";i:421;s:8:"function";s:13:"finalizeValue";s:5:"class";s:45:"Symfony\Component\Config\Definition\ArrayNode";s:4:"type";s:2:"->";}}s:5:"count";i:2;}} \ No newline at end of file +a:1:{i:0;a:6:{s:4:"type";i:16384;s:7:"message";s:105:"Since symfony/security-bundle 6.2: The "enable_authenticator_manager" option at "security" is deprecated.";s:4:"file";s:92:"D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\vendor\symfony\config\Definition\ArrayNode.php";s:4:"line";i:248;s:5:"trace";a:1:{i:0;a:5:{s:4:"file";s:91:"D:\My Stuff\DEVELOPMENT\LaLiga\LaLiga-BackEnd\vendor\symfony\config\Definition\BaseNode.php";s:4:"line";i:421;s:8:"function";s:13:"finalizeValue";s:5:"class";s:45:"Symfony\Component\Config\Definition\ArrayNode";s:4:"type";s:2:"->";}}s:5:"count";i:2;}} \ No newline at end of file