<?php
namespace App\Entity;
use ApiPlatform\Metadata\ApiResource;
use ApiPlatform\Metadata\Get;
use ApiPlatform\Metadata\Post;
use ApiPlatform\Metadata\Put;
use App\Repository\ConfigurationItemValueRepository;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Serializer\Annotation\Groups;
#[ApiResource(operations: [])]
#[ORM\Entity(repositoryClass: ConfigurationItemValueRepository::class)]
class ConfigurationItemValue extends ConfigurationItem
{
#[ORM\Column(nullable: true)]
#[Groups(['configuration-item:read'])]
private array $value = [];
public function __construct(string $name = null, mixed $value = null)
{
parent::__construct($name);
$this->setValue($value);
}
public function getValue(): mixed
{
return isset($this->value['value']) ? $this->value['value'] : $this->value;
}
public function setValue(mixed $value): self
{
$this->value = is_array($value) ? $value : ['value' => $value];
return $this;
}
public function getData(): mixed
{
return $this->getValue();
}
}