src/Entity/Location.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_location")
  8.  */
  9. class Location implements \Stringable
  10. {
  11.     public const TYPE_FRENCH_DEPARTMENT 'french-department';
  12.     public const TYPE_OTHER 'other';
  13.     /**
  14.      * @ORM\Id
  15.      *
  16.      * @ORM\GeneratedValue
  17.      *
  18.      * @ORM\Column(type="integer")
  19.      */
  20.     private $id;
  21.     /**
  22.      * @ORM\Column(type="string")
  23.      */
  24.     private $name;
  25.     /**
  26.      * @ORM\Column(type="string")
  27.      */
  28.     private $type;
  29.     public function __toString(): string
  30.     {
  31.         return (string) $this->name;
  32.     }
  33.     public function getId()
  34.     {
  35.         return $this->id;
  36.     }
  37.     public function setName($name): void
  38.     {
  39.         $this->name $name;
  40.     }
  41.     public function getName()
  42.     {
  43.         return $this->name;
  44.     }
  45.     public function setType($type): void
  46.     {
  47.         $this->type $type;
  48.     }
  49.     public function getType()
  50.     {
  51.         return $this->type;
  52.     }
  53. }