diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-05-04 11:42:52 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-05-04 11:42:52 +0200 |
commit | d9926005b1195c8cb4607dd45c21c7ad6c4f4c80 (patch) | |
tree | 0454b248a7e7d6f911a243fbc2dbee0a0aa5e938 /src/Wallabag/CoreBundle/Entity | |
parent | 12c697562e11bed4d2c2af0521a67219dd62ee63 (diff) | |
download | wallabag-d9926005b1195c8cb4607dd45c21c7ad6c4f4c80.tar.gz wallabag-d9926005b1195c8cb4607dd45c21c7ad6c4f4c80.tar.zst wallabag-d9926005b1195c8cb4607dd45c21c7ad6c4f4c80.zip |
Rename getEntriesByUser method to getEntriesByUserId
Diffstat (limited to 'src/Wallabag/CoreBundle/Entity')
-rw-r--r-- | src/Wallabag/CoreBundle/Entity/Tag.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/Tag.php b/src/Wallabag/CoreBundle/Entity/Tag.php index f6c42f5d..b4adbbd3 100644 --- a/src/Wallabag/CoreBundle/Entity/Tag.php +++ b/src/Wallabag/CoreBundle/Entity/Tag.php | |||
@@ -118,7 +118,7 @@ class Tag | |||
118 | return $this->entries; | 118 | return $this->entries; |
119 | } | 119 | } |
120 | 120 | ||
121 | public function getEntriesByUser($userId) | 121 | public function getEntriesByUserId($userId) |
122 | { | 122 | { |
123 | $filteredEntries = new ArrayCollection(); | 123 | $filteredEntries = new ArrayCollection(); |
124 | foreach ($this->entries as $entry) { | 124 | foreach ($this->entries as $entry) { |