]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Entity/Entry.php
Merge pull request #3024 from wallabag/store-date
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Entity / Entry.php
index 8d385eb470b8e9174a1a58adbccfa8b43461a172..b71c467cf6ba3942812e670510cccbe00fd14b6f 100644 (file)
@@ -192,15 +192,6 @@ class Entry
      */
     private $previewPicture;
 
-    /**
-     * @var bool
-     *
-     * @ORM\Column(name="is_public", type="boolean", nullable=true, options={"default" = false})
-     *
-     * @Groups({"export_all"})
-     */
-    private $isPublic;
-
     /**
      * @var string
      *
@@ -549,22 +540,6 @@ class Entry
         $this->domainName = $domainName;
     }
 
-    /**
-     * @return bool
-     */
-    public function isPublic()
-    {
-        return $this->isPublic;
-    }
-
-    /**
-     * @param bool $isPublic
-     */
-    public function setIsPublic($isPublic)
-    {
-        $this->isPublic = $isPublic;
-    }
-
     /**
      * @return ArrayCollection<Tag>
      */