X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/69a888d9341349a25ba800313f9f14bb638e6ca5..708aaf43238a88e9d3d6d3b3f824142866292956:/Repository/SlotRepository.php?ds=sidebyside

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);