src/Entity/Parameter.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  5. use Symfony\Component\Validator\Constraints as Assert;
  6. /**
  7.  * @ORM\Entity()
  8.  *
  9.  * @ORM\Table(name="parameter")
  10.  */
  11. class Parameter
  12. {
  13.     /**
  14.      * @ORM\Column(type="integer")
  15.      *
  16.      * @ORM\Id
  17.      *
  18.      * @ORM\GeneratedValue(strategy="AUTO")
  19.      */
  20.     private $id;
  21.     /**
  22.      * @ORM\Column(type="string", length=255, nullable=true)
  23.      */
  24.     private $value;
  25.     /**
  26.      * @ORM\Column(name="array_value", type="array", nullable=true)
  27.      */
  28.     private $arrayValue;
  29.     /**
  30.      * @ORM\Column(type="string", length=255, nullable=true)
  31.      */
  32.     private $type;
  33.     /**
  34.      * @ORM\Column(type="string", length=255, nullable=true)
  35.      */
  36.     private $category;
  37.     /**
  38.      * @ORM\Column(type="string", length=255, nullable=true)
  39.      */
  40.     private $tooltip;
  41.     public function __construct(/**
  42.      * @ORM\Column
  43.      *
  44.      * @Assert\NotBlank
  45.      */
  46.         private $name$value null)
  47.     {
  48.         $this->setValue($value);
  49.     }
  50.     public function getId()
  51.     {
  52.         return $this->id;
  53.     }
  54.     public function getName()
  55.     {
  56.         return $this->name;
  57.     }
  58.     public function setName($name): void
  59.     {
  60.         $this->name $name;
  61.     }
  62.     public function getValue()
  63.     {
  64.         if ($this->isArray()) {
  65.             return $this->arrayValue;
  66.         }
  67.         return $this->value;
  68.     }
  69.     public function setValue($value)
  70.     {
  71.         $arrayValue null;
  72.         $scalarValue null;
  73.         if (true === is_array($value)) {
  74.             $arrayValue array_values($value);
  75.         } elseif (false === is_null($value)) {
  76.             $scalarValue $value;
  77.         }
  78.         $this->value $scalarValue;
  79.         $this->arrayValue $arrayValue;
  80.         return $this;
  81.     }
  82.     public function getType()
  83.     {
  84.         return $this->type;
  85.     }
  86.     public function setType($type): void
  87.     {
  88.         $this->type $type;
  89.     }
  90.     public function getCategory()
  91.     {
  92.         return $this->category;
  93.     }
  94.     public function setCategory($category): void
  95.     {
  96.         $this->category $category;
  97.     }
  98.     public function getTooltip(): ?string
  99.     {
  100.         return $this->tooltip;
  101.     }
  102.     public function setTooltip($tooltip): void
  103.     {
  104.         $this->tooltip $tooltip;
  105.     }
  106.     private function isArray()
  107.     {
  108.         return null === $this->value;
  109.     }
  110. }