X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/eb7ffdec9dc02d4f65e2955b677b849e58d857a9..3acf23dca54927ce3131a617756cf3d6e641c792:/Repository/SlotRepository.php diff --git a/Repository/SlotRepository.php b/Repository/SlotRepository.php index 2b40eba..d2b6eb3 100644 --- a/Repository/SlotRepository.php +++ b/Repository/SlotRepository.php @@ -27,7 +27,7 @@ class SlotRepository extends Repository { public function findAllWithTranslatedTitle(): array { //Set the request from quoted table name //XXX: this allow to make this code table name independent - $req = 'SELECT s.id, s.title FROM RapsysAirBundle:Slot AS s'; + $req = 'SELECT s.id, s.title FROM Rapsys\AirBundle\Entity\Slot AS s'; //Replace bundle entity name by table name $req = str_replace($this->tableKeys, $this->tableValues, $req);