aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity/Entries.php
diff options
context:
space:
mode:
authorJeremy <j0k3r@users.noreply.github.com>2015-02-05 21:51:05 +0100
committerJeremy <j0k3r@users.noreply.github.com>2015-02-05 21:51:05 +0100
commitc8dee953961964aa842e516995f0c6fafd007f9b (patch)
tree8a97d887bba874f248be86626b1205087ff54aa0 /src/Wallabag/CoreBundle/Entity/Entries.php
parent93e28e4d2ec677a852d71d167dc7c54ef2780cae (diff)
parentc0284f6182a7421d2352e9288205d70b81185a7d (diff)
downloadwallabag-c8dee953961964aa842e516995f0c6fafd007f9b.tar.gz
wallabag-c8dee953961964aa842e516995f0c6fafd007f9b.tar.zst
wallabag-c8dee953961964aa842e516995f0c6fafd007f9b.zip
Merge pull request #1055 from wallabag/v2-api-patch-methid
PATCH method, boolean for some parameters and change entity methods name
Diffstat (limited to 'src/Wallabag/CoreBundle/Entity/Entries.php')
-rw-r--r--src/Wallabag/CoreBundle/Entity/Entries.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/Entries.php b/src/Wallabag/CoreBundle/Entity/Entries.php
index 6eb1efc0..ab5b859b 100644
--- a/src/Wallabag/CoreBundle/Entity/Entries.php
+++ b/src/Wallabag/CoreBundle/Entity/Entries.php
@@ -185,7 +185,7 @@ class Entries
185 * @param string $isRead 185 * @param string $isRead
186 * @return Entries 186 * @return Entries
187 */ 187 */
188 public function setIsRead($isRead) 188 public function setRead($isRead)
189 { 189 {
190 $this->isRead = $isRead; 190 $this->isRead = $isRead;
191 191
@@ -197,7 +197,7 @@ class Entries
197 * 197 *
198 * @return string 198 * @return string
199 */ 199 */
200 public function getIsRead() 200 public function isRead()
201 { 201 {
202 return $this->isRead; 202 return $this->isRead;
203 } 203 }
@@ -215,7 +215,7 @@ class Entries
215 * @param string $isFav 215 * @param string $isFav
216 * @return Entries 216 * @return Entries
217 */ 217 */
218 public function setIsFav($isFav) 218 public function setFav($isFav)
219 { 219 {
220 $this->isFav = $isFav; 220 $this->isFav = $isFav;
221 221
@@ -227,7 +227,7 @@ class Entries
227 * 227 *
228 * @return string 228 * @return string
229 */ 229 */
230 public function getIsFav() 230 public function isFav()
231 { 231 {
232 return $this->isFav; 232 return $this->isFav;
233 } 233 }
@@ -402,7 +402,7 @@ class Entries
402 /** 402 /**
403 * @return boolean 403 * @return boolean
404 */ 404 */
405 public function isIsPublic() 405 public function isPublic()
406 { 406 {
407 return $this->isPublic; 407 return $this->isPublic;
408 } 408 }
@@ -410,7 +410,7 @@ class Entries
410 /** 410 /**
411 * @param boolean $isPublic 411 * @param boolean $isPublic
412 */ 412 */
413 public function setIsPublic($isPublic) 413 public function setPublic($isPublic)
414 { 414 {
415 $this->isPublic = $isPublic; 415 $this->isPublic = $isPublic;
416 } 416 }