lib/boab/cms-bundle/src/Entity/Media.php line 12

Open in your IDE?
  1. <?php
  2. namespace Boab\CmsBundle\Entity;
  3. use Boab\CmsBundle\Repository\MediaRepository;
  4. use Boab\CmsBundle\Entity\Content;
  5. use Doctrine\ORM\Mapping as ORM;
  6. /**
  7.  * @ORM\Entity(repositoryClass=MediaRepository::class)
  8.  */
  9. class Media implements MediaInterface
  10. {
  11.     /**
  12.      * @ORM\Id
  13.      * @ORM\GeneratedValue
  14.      * @ORM\Column(type="integer")
  15.      */
  16.     private $id;
  17.     /**
  18.      * @ORM\Column(type="string", length=255)
  19.      */
  20.     private $title;
  21.     /**
  22.      * @ORM\Column(type="string", length=150)
  23.      */
  24.     private $mimeType;
  25.     /**
  26.      * @ORM\Column(type="string", length=100)
  27.      */
  28.     private $fileName;
  29.     /**
  30.      * @ORM\Column(type="datetime")
  31.      */
  32.     private $createdAt;
  33.     /**
  34.      * @ORM\Column(type="datetime", nullable=true)
  35.      */
  36.     private $updatedAt;
  37.     /**
  38.      * @ORM\ManyToOne(targetEntity=Content::class, inversedBy="medias")
  39.      */
  40.     private $content;
  41.     public function getId(): ?int
  42.     {
  43.         return $this->id;
  44.     }
  45.     public function getTitle(): ?string
  46.     {
  47.         return $this->title;
  48.     }
  49.     public function setTitle(string $title): self
  50.     {
  51.         $this->title $title;
  52.         return $this;
  53.     }
  54.     public function getMimeType(): ?string
  55.     {
  56.         return $this->mimeType;
  57.     }
  58.     public function setMimeType(string $mimeType): self
  59.     {
  60.         $this->mimeType $mimeType;
  61.         return $this;
  62.     }
  63.     public function getFileName(): ?string
  64.     {
  65.         return $this->fileName;
  66.     }
  67.     public function setFileName(string $fileName): self
  68.     {
  69.         $this->fileName $fileName;
  70.         return $this;
  71.     }
  72.     public function getCreatedAt(): ?\DateTimeInterface
  73.     {
  74.         return $this->createdAt;
  75.     }
  76.     public function setCreatedAt(\DateTimeInterface $createdAt): self
  77.     {
  78.         $this->createdAt $createdAt;
  79.         return $this;
  80.     }
  81.     public function getUpdatedAt(): ?\DateTimeInterface
  82.     {
  83.         return $this->updatedAt;
  84.     }
  85.     public function setUpdatedAt(?\DateTimeInterface $updatedAt): self
  86.     {
  87.         $this->updatedAt $updatedAt;
  88.         return $this;
  89.     }
  90.     public function getContent(): ?Content
  91.     {
  92.         return $this->content;
  93.     }
  94.     public function setContent(?Content $content): self
  95.     {
  96.         $this->content $content;
  97.         return $this;
  98.     }
  99. }