aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-02-20 15:36:25 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-03-06 20:50:30 +0100
commit1d14779154481b320e1c44fccf2558d8c9fa43a1 (patch)
tree45fbcb70457459b2359828fd035bb8936442fc02 /src/Wallabag/CoreBundle/Entity
parentaa4d6562c196926a55819326b0fbe504daf2156f (diff)
downloadwallabag-1d14779154481b320e1c44fccf2558d8c9fa43a1.tar.gz
wallabag-1d14779154481b320e1c44fccf2558d8c9fa43a1.tar.zst
wallabag-1d14779154481b320e1c44fccf2558d8c9fa43a1.zip
remove isDeleted flag
Diffstat (limited to 'src/Wallabag/CoreBundle/Entity')
-rw-r--r--src/Wallabag/CoreBundle/Entity/Entry.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/Entry.php b/src/Wallabag/CoreBundle/Entity/Entry.php
index 4f57eb0a..e47848b6 100644
--- a/src/Wallabag/CoreBundle/Entity/Entry.php
+++ b/src/Wallabag/CoreBundle/Entity/Entry.php
@@ -58,13 +58,6 @@ class Entry
58 private $isStarred = false; 58 private $isStarred = false;
59 59
60 /** 60 /**
61 * @var boolean
62 *
63 * @ORM\Column(name="is_deleted", type="boolean")
64 */
65 private $isDeleted = false;
66
67 /**
68 * @var string 61 * @var string
69 * 62 *
70 * @ORM\Column(name="content", type="text", nullable=true) 63 * @ORM\Column(name="content", type="text", nullable=true)
@@ -283,22 +276,6 @@ class Entry
283 /** 276 /**
284 * @return string 277 * @return string
285 */ 278 */
286 public function isDeleted()
287 {
288 return $this->isDeleted;
289 }
290
291 /**
292 * @param string $isDeleted
293 */
294 public function setDeleted($isDeleted)
295 {
296 $this->isDeleted = $isDeleted;
297 }
298
299 /**
300 * @return string
301 */
302 public function getCreatedAt() 279 public function getCreatedAt()
303 { 280 {
304 return $this->createdAt; 281 return $this->createdAt;