src/Entity/Content.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ContentRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=ContentRepository::class)
  7.  */
  8. class Content
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private $contentType;
  20.     /**
  21.      * @ORM\Column(type="string", length=255)
  22.      */
  23.     private $title;
  24.     /**
  25.      * @ORM\Column(type="string", length=255)
  26.      */
  27.     private $page;
  28.     /**
  29.      * @ORM\Column(type="string", length=255)
  30.      */
  31.     private $path;
  32.     /**
  33.      * @ORM\Column(type="text")
  34.      */
  35.     private $body;
  36.     /**
  37.      * @ORM\Column(type="datetime")
  38.      */
  39.     private $created;
  40.     /**
  41.      * @ORM\Column(type="datetime")
  42.      */
  43.     private $updated;
  44.     /**
  45.      * @ORM\Column(type="integer")
  46.      */
  47.     private $uid;
  48.     /**
  49.      * @ORM\Column(type="boolean")
  50.      */
  51.     private $status;
  52.     public function getId(): ?int
  53.     {
  54.         return $this->id;
  55.     }
  56.     public function getContentType(): ?string
  57.     {
  58.         return $this->contentType;
  59.     }
  60.     public function setContentType(string $contentType): self
  61.     {
  62.         $this->contentType $contentType;
  63.         return $this;
  64.     }
  65.     public function getTitle(): ?string
  66.     {
  67.         return $this->title;
  68.     }
  69.     public function setTitle(string $title): self
  70.     {
  71.         $this->title $title;
  72.         return $this;
  73.     }
  74.     public function getPage(): ?string
  75.     {
  76.         return $this->page;
  77.     }
  78.     public function setPage(string $page): self
  79.     {
  80.         $this->page $page;
  81.         return $this;
  82.     }
  83.     public function getPath(): ?string
  84.     {
  85.         return $this->path;
  86.     }
  87.     public function setPath(string $path): self
  88.     {
  89.         $this->path $path;
  90.         return $this;
  91.     }
  92.     public function getBody(): ?string
  93.     {
  94.         return $this->body;
  95.     }
  96.     public function setBody(string $body): self
  97.     {
  98.         $this->body $body;
  99.         return $this;
  100.     }
  101.     public function getCreated(): ?\DateTimeInterface
  102.     {
  103.         return $this->created;
  104.     }
  105.     public function setCreated(\DateTimeInterface $created): self
  106.     {
  107.         $this->created $created;
  108.         return $this;
  109.     }
  110.     public function getUpdated(): ?\DateTimeInterface
  111.     {
  112.         return $this->updated;
  113.     }
  114.     public function setUpdated(\DateTimeInterface $updated): self
  115.     {
  116.         $this->updated $updated;
  117.         return $this;
  118.     }
  119.     public function getUid(): ?int
  120.     {
  121.         return $this->uid;
  122.     }
  123.     public function setUid(int $uid): self
  124.     {
  125.         $this->uid $uid;
  126.         return $this;
  127.     }
  128.     public function getStatus(): ?bool
  129.     {
  130.         return $this->status;
  131.     }
  132.     public function setStatus(bool $status): self
  133.     {
  134.         $this->status $status;
  135.         return $this;
  136.     }
  137. }