aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Repository/EntryRepository.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-02-10 13:53:00 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-02-10 13:53:00 +0100
commit017e20895f6d731b2b8fd7cee0cd954eb7e96145 (patch)
tree20f8700e69144bfd2e4302999ed03ebbdea4ce31 /src/Wallabag/CoreBundle/Repository/EntryRepository.php
parent3d3368cfd5e8dbe320428f479a49cabfddc58acd (diff)
downloadwallabag-017e20895f6d731b2b8fd7cee0cd954eb7e96145.tar.gz
wallabag-017e20895f6d731b2b8fd7cee0cd954eb7e96145.tar.zst
wallabag-017e20895f6d731b2b8fd7cee0cd954eb7e96145.zip
findEntries returns array
Diffstat (limited to 'src/Wallabag/CoreBundle/Repository/EntryRepository.php')
-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 836a2edd..abf01930 100644
--- a/src/Wallabag/CoreBundle/Repository/EntryRepository.php
+++ b/src/Wallabag/CoreBundle/Repository/EntryRepository.php
@@ -98,7 +98,7 @@ class EntryRepository extends EntityRepository
98 * @param string $sort 98 * @param string $sort
99 * @param string $order 99 * @param string $order
100 * 100 *
101 * @return Entry 101 * @return array
102 */ 102 */
103 public function findEntries($userId, $isArchived = null, $isStarred = null, $isDeleted = null, $sort = 'created', $order = 'ASC') 103 public function findEntries($userId, $isArchived = null, $isStarred = null, $isDeleted = null, $sort = 'created', $order = 'ASC')
104 { 104 {