diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-02-10 13:53:00 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-02-10 13:53:00 +0100 |
commit | 017e20895f6d731b2b8fd7cee0cd954eb7e96145 (patch) | |
tree | 20f8700e69144bfd2e4302999ed03ebbdea4ce31 | |
parent | 3d3368cfd5e8dbe320428f479a49cabfddc58acd (diff) | |
download | wallabag-017e20895f6d731b2b8fd7cee0cd954eb7e96145.tar.gz wallabag-017e20895f6d731b2b8fd7cee0cd954eb7e96145.tar.zst wallabag-017e20895f6d731b2b8fd7cee0cd954eb7e96145.zip |
findEntries returns array
-rw-r--r-- | src/Wallabag/CoreBundle/Repository/EntryRepository.php | 2 |
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 | { |