src/Database/Domain/Entity/Globals.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Database\Domain\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Symfony\Component\Validator\Constraints as Assert;
  5. /**
  6.  * @ORM\Entity(repositoryClass="App\Database\Domain\Repository\GlobalsRepository")
  7.  */
  8. class Globals extends AbstractEntity
  9. {
  10.     public const SESSIONS_COUNTER 'sessions_counter';
  11.     public const TABS_COUNTER 'tabs_counter';
  12.     /**
  13.      * @ORM\Column(type="string", name="globals_key", nullable=false)
  14.      *
  15.      * @Assert\NotBlank()
  16.      */
  17.     private string $key;
  18.     /**
  19.      * @ORM\Column(type="text")
  20.      */
  21.     private string $value;
  22.     public function __construct(string $idstring $key$value)
  23.     {
  24.         $this->id $id;
  25.         $this->key $key;
  26.         if (is_array($value)) {
  27.             $this->setArray($value);
  28.         } else {
  29.             $this->setValue($value);
  30.         }
  31.     }
  32.     public function __toString(): string
  33.     {
  34.         return $this->value;
  35.     }
  36.     public function getKey(): string
  37.     {
  38.         return $this->key;
  39.     }
  40.     public function setKey(string $key): self
  41.     {
  42.         $this->key $key;
  43.         return $this;
  44.     }
  45.     public function getValue(): string
  46.     {
  47.         return $this->value;
  48.     }
  49.     public function setValue(string $value): self
  50.     {
  51.         $this->value $value;
  52.         return $this;
  53.     }
  54.     public function setArray(array $value): self
  55.     {
  56.         $this->value json_encode($value);
  57.         return $this;
  58.     }
  59.     public function toArray(): array
  60.     {
  61.         return json_decode($this->valuetrue);
  62.     }
  63.     public function toInt(): int
  64.     {
  65.         return (int) $this->value;
  66.     }
  67.     public function toFloat(): float
  68.     {
  69.         return (float) $this->value;
  70.     }
  71.     public function toBoolean(): bool
  72.     {
  73.         return $this->value === 'true';
  74.     }
  75. }