src/Entity/ConfigurationItemValue.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use ApiPlatform\Metadata\Get;
  5. use ApiPlatform\Metadata\Post;
  6. use ApiPlatform\Metadata\Put;
  7. use App\Repository\ConfigurationItemValueRepository;
  8. use Doctrine\ORM\Mapping as ORM;
  9. use Symfony\Component\Serializer\Annotation\Groups;
  10. #[ApiResource(operations: [])]
  11. #[ORM\Entity(repositoryClassConfigurationItemValueRepository::class)]
  12. class ConfigurationItemValue extends ConfigurationItem
  13. {
  14.     #[ORM\Column(nullabletrue)]
  15.     #[Groups(['configuration-item:read'])]
  16.     private array $value = [];
  17.     public function __construct(string $name nullmixed $value null)
  18.     {
  19.         parent::__construct($name);
  20.         $this->setValue($value);
  21.     }
  22.     public function getValue(): mixed
  23.     {
  24.         return isset($this->value['value']) ? $this->value['value'] : $this->value;
  25.     }
  26.     public function setValue(mixed $value): self
  27.     {
  28.         $this->value is_array($value) ? $value : ['value' => $value];
  29.         return $this;
  30.     }
  31.     public function getData(): mixed
  32.     {
  33.         return $this->getValue();
  34.     }
  35. }