src/Entity/BrandAlias.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Table(name="brands__aliases")
  6.  * @ORM\Entity(repositoryClass="App\Repository\BrandAliasRepository")
  7.  */
  8. class BrandAlias
  9. {
  10.     use IdTrait;
  11.     /**
  12.      * @ORM\Column(name="value", nullable=false, type="string", unique=true)
  13.      */
  14.     private string $value;
  15.     /**
  16.      * @ORM\ManyToOne(targetEntity="App\Entity\Brand")
  17.      * @ORM\JoinColumn(name="brand_id", referencedColumnName="id", onDelete="CASCADE", nullable=false)
  18.      */
  19.     private Brand $brand;
  20.     public function __construct(string $valueBrand $brand)
  21.     {
  22.         $this->value $value;
  23.         $this->brand $brand;
  24.     }
  25.     public function getValue(): string
  26.     {
  27.         return $this->value;
  28.     }
  29.     public function getBrand(): Brand
  30.     {
  31.         return $this->brand;
  32.     }
  33. }