src/Entity/Library.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\LibraryRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassLibraryRepository::class)]
  6. #[ORM\HasLifecycleCallbacks]
  7. class Library
  8. {
  9.     use \App\Traits\EntityDateTimeAbleTrait;
  10.     const TYPE_PHOTO 1;
  11.     const TYPE_VIDEO 2;
  12.     const STATUS_ACTIVE 1;
  13.     const STATUS_INACTIVE 0;
  14.     #[ORM\Id]
  15.     #[ORM\GeneratedValue]
  16.     #[ORM\Column(type'integer')]
  17.     private $id;
  18.     #[ORM\Column(type'string'length255nullabletrue)]
  19.     private ?string $photo null;
  20.     #[ORM\Column(type'integer'nullabletrue)]
  21.     private ?int $type null;
  22.     #[ORM\Column(type'boolean'nullabletrue)]
  23.     private ?bool $status null;
  24.     #[ORM\Column(type'integer'nullabletrue)]
  25.     private ?int $ordering null;
  26.     public function getId(): ?int
  27.     {
  28.         return $this->id;
  29.     }
  30.     public function getPhoto(): ?string
  31.     {
  32.         return $this->photo;
  33.     }
  34.     public function setPhoto(?string $photo): self
  35.     {
  36.         $this->photo $photo;
  37.         return $this;
  38.     }
  39.     public function getType(): ?int
  40.     {
  41.         return $this->type;
  42.     }
  43.     public function setType(?int $type): self
  44.     {
  45.         $this->type $type;
  46.         return $this;
  47.     }
  48.     public function getStatus(): ?bool
  49.     {
  50.         return $this->status;
  51.     }
  52.     public function setStatus(?bool $status): self
  53.     {
  54.         $this->status $status;
  55.         return $this;
  56.     }
  57.     public function getOrdering(): ?int
  58.     {
  59.         return $this->ordering;
  60.     }
  61.     public function setOrdering(int $ordering): self
  62.     {
  63.         $this->ordering $ordering;
  64.         return $this;
  65.     }
  66. }