src/Entity/Media/Photo.php line 19

Open in your IDE?
  1. <?php
  2. /*
  3.  * @since 1.0.0
  4.  * @copyright Copyright (C) 2021 ArtMedia. All rights reserved.
  5.  * @website http://artmedia.biz.pl
  6.  * @author Arkadiusz Tobiasz
  7.  * @email kontakt@artmedia.biz.pl
  8.  */
  9. namespace App\Entity\Media;
  10. use Doctrine\ORM\Mapping as ORM;
  11. use Symfony\Component\Validator\Constraints as Assert;
  12. /**
  13.  * @ORM\Entity(repositoryClass="App\Repository\Media\PhotoRepository")
  14.  * @ORM\Table(name="media_photo")
  15.  */
  16. class Photo extends Media
  17. {
  18.     const FOLLOW_NOTIFICATION 'follow_photo';
  19.     const FEED 'new_photo';
  20.     
  21.     /**
  22.      * @ORM\Column(type="string", length=255)
  23.      */
  24.     private $filename;
  25.     public function __construct()
  26.     {
  27.         parent::__construct();
  28.     }
  29.     public function getFilename(): ?string
  30.     {
  31.         return $this->filename;
  32.     }
  33.     public function setFilename(?string $filename): self
  34.     {
  35.         $this->filename $filename;
  36.         return $this;
  37.     }
  38.     public function getType(): string
  39.     {
  40.         return Media::TYPE_PHOTO;
  41.     }
  42. }