src/Entity/Color.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Gedmo\Mapping\Annotation as Gedmo;
  5. use Gedmo\Translatable\Translatable;
  6. /**
  7.  * @ORM\Entity(repositoryClass="App\Repository\ColorRepository")
  8.  *
  9.  * @ORM\Table(name="vehicle_color")
  10.  */
  11. class Color implements TranslatableLabelInterface
  12. {
  13.     /**
  14.      * @ORM\Id
  15.      *
  16.      * @ORM\Column(type="bigint")
  17.      *
  18.      * @ORM\GeneratedValue(strategy="AUTO")
  19.      */
  20.     protected $id;
  21.     /**
  22.      * @ORM\Column(type="string")
  23.      *
  24.      * @Gedmo\Translatable
  25.      */
  26.     protected $name;
  27.     /**
  28.      * Locale.
  29.      *
  30.      * @Gedmo\Locale
  31.      */
  32.     protected $locale;
  33.     public function __construct(
  34.         /**
  35.          * @ORM\Column(type="string")
  36.          */
  37.         protected $code
  38.     ) {
  39.     }
  40.     /**
  41.      * Get id.
  42.      *
  43.      * @return id
  44.      */
  45.     public function getId()
  46.     {
  47.         return $this->id;
  48.     }
  49.     /**
  50.      * Get Code.
  51.      *
  52.      * @return code
  53.      */
  54.     public function getCode()
  55.     {
  56.         return $this->code;
  57.     }
  58.     /**
  59.      * Set code.
  60.      *
  61.      * @param code the value to set
  62.      */
  63.     public function setCode($code): void
  64.     {
  65.         $this->code $code;
  66.     }
  67.     /**
  68.      * Get name.
  69.      *
  70.      * @return name
  71.      */
  72.     public function getName()
  73.     {
  74.         return $this->name;
  75.     }
  76.     /**
  77.      * Set name.
  78.      *
  79.      * @param name the value to set
  80.      */
  81.     public function setName($name): void
  82.     {
  83.         $this->name $name;
  84.     }
  85.     public function setTranslatableLocale($locale): void
  86.     {
  87.         $this->locale $locale;
  88.     }
  89. }