From 991dd47b40783c56aee07179f42940cbbbae46bd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Wed, 21 Feb 2024 11:56:48 +0100 Subject: [PATCH] Rename EntityRepository to Repository --- Repository/LocationRepository.php | 2 +- Repository/SessionRepository.php | 2 +- Repository/SlotRepository.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Repository/LocationRepository.php b/Repository/LocationRepository.php index d8acc14..de475fb 100644 --- a/Repository/LocationRepository.php +++ b/Repository/LocationRepository.php @@ -20,7 +20,7 @@ use Symfony\Component\Routing\RouterInterface; * * @TODO: use new window function syntax https://mariadb.com/kb/en/window-functions-overview/ MAX(updated) OVER (PARTITION updated) AS modified ??? */ -class LocationRepository extends EntityRepository { +class LocationRepository extends Repository { /** * Find locations * diff --git a/Repository/SessionRepository.php b/Repository/SessionRepository.php index d7cc5be..4e9f6ff 100644 --- a/Repository/SessionRepository.php +++ b/Repository/SessionRepository.php @@ -23,7 +23,7 @@ use Rapsys\AirBundle\Entity\Slot; /** * SessionRepository */ -class SessionRepository extends EntityRepository { +class SessionRepository extends Repository { ///Set glyphs //TODO: document utf-8 codes ? //TODO: use unknown == ? symbol by default ??? diff --git a/Repository/SlotRepository.php b/Repository/SlotRepository.php index 0e440b8..bd356f7 100644 --- a/Repository/SlotRepository.php +++ b/Repository/SlotRepository.php @@ -16,7 +16,7 @@ use Doctrine\ORM\Query\ResultSetMapping; /** * SlotRepository */ -class SlotRepository extends EntityRepository { +class SlotRepository extends Repository { /** * Find slots with translated title * -- 2.41.0