src/Entity/Partner.php line 9

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