X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/69a888d9341349a25ba800313f9f14bb638e6ca5..e5797b46f0390e3d269122b1197fdfe7f0abbe70:/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);