]> Raphaƫl G. Git Repositories - airbundle/blobdiff - Repository/SlotRepository.php
Use entity full namespace instead of dropped entity short syntax
[airbundle] / Repository / SlotRepository.php
index 2b40ebad35e012cc6709e5937feddf5349d29528..d2b6eb36a1fd290aaaff580e065dc760479ba7a9 100644 (file)
@@ -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);