X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FRepository%2FEntriesRepository.php;h=d87eb373069ebf9ea37ad386cdf2ed891518d8bd;hb=7df80cb32ca9b7d0fe452320ddc3563a1e373e2f;hp=e63c67e2c3be44b5cb588b8adf153a822803fcaf;hpb=1990517b2263a080946853ed697a6d687262ae80;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Repository/EntriesRepository.php b/src/Wallabag/CoreBundle/Repository/EntriesRepository.php index e63c67e2..d87eb373 100644 --- a/src/Wallabag/CoreBundle/Repository/EntriesRepository.php +++ b/src/Wallabag/CoreBundle/Repository/EntriesRepository.php @@ -6,7 +6,6 @@ use Doctrine\ORM\Query; use Doctrine\ORM\EntityRepository; use Doctrine\ORM\Tools\Pagination\Paginator; use Wallabag\CoreBundle\Entity\Entries; -use Wallabag\CoreBundle\Service\Extractor; class EntriesRepository extends EntityRepository { @@ -15,7 +14,7 @@ class EntriesRepository extends EntityRepository * * @param $userId * @param $firstResult - * @param int $maxResults + * @param int $maxResults * @return Paginator */ public function findUnreadByUser($userId, $firstResult, $maxResults = 12) @@ -38,7 +37,7 @@ class EntriesRepository extends EntityRepository * * @param $userId * @param $firstResult - * @param int $maxResults + * @param int $maxResults * @return Paginator */ public function findArchiveByUser($userId, $firstResult, $maxResults = 12) @@ -61,7 +60,7 @@ class EntriesRepository extends EntityRepository * * @param $userId * @param $firstResult - * @param int $maxResults + * @param int $maxResults * @return Paginator */ public function findStarredByUser($userId, $firstResult, $maxResults = 12)