src/Entity/Segment.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Entity
  6.  *
  7.  * @ORM\Table(name="delivery_segment")
  8.  */
  9. class Segment
  10. {
  11.     public const CATEGORY_1 'category_1';
  12.     public const CATEGORY_2 'category_2';
  13.     public const NON_STANDARD 'non_standard';
  14.     public const CATEGORIES = [self::CATEGORY_1self::CATEGORY_2self::NON_STANDARD];
  15.     /**
  16.      * @ORM\Id
  17.      *
  18.      * @ORM\GeneratedValue
  19.      *
  20.      * @ORM\Column(type="integer")
  21.      */
  22.     private $id;
  23.     /**
  24.      * @ORM\Column(type="string", length=16, unique=true)
  25.      */
  26.     private $code;
  27.     /**
  28.      * @ORM\Column(type="string", length=16)
  29.      */
  30.     private $category;
  31.     public function getId()
  32.     {
  33.         return $this->id;
  34.     }
  35.     public function setCode($code): void
  36.     {
  37.         $this->code $code;
  38.     }
  39.     public function getCode()
  40.     {
  41.         return $this->code;
  42.     }
  43.     public function setCategory($category): void
  44.     {
  45.         $this->category $category;
  46.     }
  47.     public function getCategory()
  48.     {
  49.         return $this->category;
  50.     }
  51. }