aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Repository
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-02-10 06:44:38 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-02-10 06:44:38 +0100
commiteaf95758dc3ebc0e666a8317cd37311f03cd2233 (patch)
tree0edc9b7eeb3578af53384476d58a55537ca2c783 /src/Wallabag/CoreBundle/Repository
parentcbce162b407024882d8c37a7e3298c85175d2651 (diff)
downloadwallabag-eaf95758dc3ebc0e666a8317cd37311f03cd2233.tar.gz
wallabag-eaf95758dc3ebc0e666a8317cd37311f03cd2233.tar.zst
wallabag-eaf95758dc3ebc0e666a8317cd37311f03cd2233.zip
GET /api/entries returns object, no more array
Diffstat (limited to 'src/Wallabag/CoreBundle/Repository')
-rw-r--r--src/Wallabag/CoreBundle/Repository/EntryRepository.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Repository/EntryRepository.php b/src/Wallabag/CoreBundle/Repository/EntryRepository.php
index 5ae1337a..a33d698d 100644
--- a/src/Wallabag/CoreBundle/Repository/EntryRepository.php
+++ b/src/Wallabag/CoreBundle/Repository/EntryRepository.php
@@ -126,6 +126,6 @@ class EntryRepository extends EntityRepository
126 126
127 return $qb 127 return $qb
128 ->getQuery() 128 ->getQuery()
129 ->getResult(Query::HYDRATE_ARRAY); 129 ->getResult();
130 } 130 }
131} 131}