src/V4/Model/SimpleChoiceOption.php line 5

Open in your IDE?
  1. <?php
  2. namespace App\V4\Model;
  3. class SimpleChoiceOption
  4. {
  5.     /**
  6.      * @var string
  7.      */
  8.     private $id;
  9.     /**
  10.      * @return string
  11.      */
  12.     public function getId(): string
  13.     {
  14.         return $this->id;
  15.     }
  16.     /**
  17.      * @param string $id
  18.      *
  19.      * @return self
  20.      */
  21.     public function setId(string $id): self
  22.     {
  23.         $this->id $id;
  24.         return $this;
  25.     }
  26. }