From c858e5f350d6d26c8a0098165c982e32937debf9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Wed, 11 Dec 2019 05:17:48 +0100 Subject: [PATCH] Fix naming --- Repository/SessionRepository.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Repository/SessionRepository.php b/Repository/SessionRepository.php index e295bfd..9ffaf02 100644 --- a/Repository/SessionRepository.php +++ b/Repository/SessionRepository.php @@ -31,7 +31,7 @@ class SessionRepository extends \Doctrine\ORM\EntityRepository { * * @param $period The date period */ - public function findByDatePeriod($period) { + public function findAllByDatePeriod($period) { //Fetch sessions $ret = $this->getEntityManager() ->createQuery('SELECT s FROM RapsysAirBundle:Session s WHERE s.date BETWEEN :begin AND :end') -- 2.41.0