aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity/Entry.php
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2017-04-14 14:56:26 +0200
committerGitHub <noreply@github.com>2017-04-14 14:56:26 +0200
commit531828ca44604b85c3053e202e991809a4701f3b (patch)
tree80756e0bb5bf9f85f115e1eb6a26547ca7be2a1a /src/Wallabag/CoreBundle/Entity/Entry.php
parent3e7a843aa998442148061347e7978722b8cd87d2 (diff)
parent01736b5a2ee2a48403a2462014886bf009f18786 (diff)
downloadwallabag-531828ca44604b85c3053e202e991809a4701f3b.tar.gz
wallabag-531828ca44604b85c3053e202e991809a4701f3b.tar.zst
wallabag-531828ca44604b85c3053e202e991809a4701f3b.zip
Merge pull request #3030 from wallabag/remove-isPublic-from-entry
Remove isPublic from Entry entity fix #2598
Diffstat (limited to 'src/Wallabag/CoreBundle/Entity/Entry.php')
-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()