aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Repository/EntryRepository.php
diff options
context:
space:
mode:
authorNicolas Hart <contact@nclshart.net>2017-08-21 18:19:42 +0200
committerNicolas Hart <contact@nclshart.net>2017-08-22 10:41:28 +0200
commit215409a8b2ea3888fc197c8cd7beddda0a9f1403 (patch)
tree34218f758d72659e1b8e2aac96e6094bf82da3a0 /src/Wallabag/CoreBundle/Repository/EntryRepository.php
parent511f1ce1e87e0f30a455ca6ed73e008bfd557f83 (diff)
downloadwallabag-215409a8b2ea3888fc197c8cd7beddda0a9f1403.tar.gz
wallabag-215409a8b2ea3888fc197c8cd7beddda0a9f1403.tar.zst
wallabag-215409a8b2ea3888fc197c8cd7beddda0a9f1403.zip
rename getAllEntriesId into findAllEntriesIdByUserId
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 9a30cd79..febc86d3 100644
--- a/src/Wallabag/CoreBundle/Repository/EntryRepository.php
+++ b/src/Wallabag/CoreBundle/Repository/EntryRepository.php
@@ -369,7 +369,7 @@ class EntryRepository extends EntityRepository
369 * 369 *
370 * @return array 370 * @return array
371 */ 371 */
372 public function getAllEntriesId($userId = null) 372 public function findAllEntriesIdByUserId($userId = null)
373 { 373 {
374 $qb = $this->createQueryBuilder('e') 374 $qb = $this->createQueryBuilder('e')
375 ->select('e.id'); 375 ->select('e.id');