aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity
diff options
context:
space:
mode:
authorMaxime <maxime.m62@gmail.com>2017-04-07 22:23:20 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2017-04-13 13:12:19 +0200
commit15e4aea67842ae83f98d9864c5bdafa056381248 (patch)
tree064c6a828fc6c558bcd814f11be2b5b568a6e797 /src/Wallabag/CoreBundle/Entity
parent3e7a843aa998442148061347e7978722b8cd87d2 (diff)
downloadwallabag-15e4aea67842ae83f98d9864c5bdafa056381248.tar.gz
wallabag-15e4aea67842ae83f98d9864c5bdafa056381248.tar.zst
wallabag-15e4aea67842ae83f98d9864c5bdafa056381248.zip
Remove isPublic from Entry entity fix #2598
Diffstat (limited to 'src/Wallabag/CoreBundle/Entity')
-rw-r--r--src/Wallabag/CoreBundle/Entity/Entry.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/Entry.php b/src/Wallabag/CoreBundle/Entity/Entry.php
index 7276b437..bbb1fb53 100644
--- a/src/Wallabag/CoreBundle/Entity/Entry.php
+++ b/src/Wallabag/CoreBundle/Entity/Entry.php
@@ -175,15 +175,6 @@ class Entry
175 private $previewPicture; 175 private $previewPicture;
176 176
177 /** 177 /**
178 * @var bool
179 *
180 * @ORM\Column(name="is_public", type="boolean", nullable=true, options={"default" = false})
181 *
182 * @Groups({"export_all"})
183 */
184 private $isPublic;
185
186 /**
187 * @var string 178 * @var string
188 * 179 *
189 * @ORM\Column(name="http_status", type="string", length=3, nullable=true) 180 * @ORM\Column(name="http_status", type="string", length=3, nullable=true)
@@ -532,22 +523,6 @@ class Entry
532 } 523 }
533 524
534 /** 525 /**
535 * @return bool
536 */
537 public function isPublic()
538 {
539 return $this->isPublic;
540 }
541
542 /**
543 * @param bool $isPublic
544 */
545 public function setIsPublic($isPublic)
546 {
547 $this->isPublic = $isPublic;
548 }
549
550 /**
551 * @return ArrayCollection<Tag> 526 * @return ArrayCollection<Tag>
552 */ 527 */
553 public function getTags() 528 public function getTags()