src/Entity/Mystem.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Core\Annotation\ApiResource;
  4. /**
  5.  *
  6.  * @ApiResource()
  7.  */
  8. class Mystem
  9. {
  10.     private $c;
  11.     private $w;
  12.     private $l;
  13.     private $i;
  14.     private $g;
  15.     private $s;
  16.     private $d;
  17.     private $eng;
  18.     private $all;
  19.     private $weight;
  20.     private $format;
  21.     private $text;
  22.     private $body;
  23.     public function getC(): ?bool
  24.     {
  25.         return $this->c;
  26.     }
  27.     public function setC(?bool $c): self
  28.     {
  29.         $this->$c;
  30.         return $this;
  31.     }
  32.     public function getW(): ?bool
  33.     {
  34.         return $this->w;
  35.     }
  36.     public function setW(?bool $w): self
  37.     {
  38.         $this->$w;
  39.         return $this;
  40.     }
  41.     public function getL(): ?bool
  42.     {
  43.         return $this->l;
  44.     }
  45.     public function setL(?bool $l): self
  46.     {
  47.         $this->$l;
  48.         return $this;
  49.     }
  50.     public function getI(): ?bool
  51.     {
  52.         return $this->i;
  53.     }
  54.     public function setI(?bool $i): self
  55.     {
  56.         $this->$i;
  57.         return $this;
  58.     }
  59.     public function getG(): ?bool
  60.     {
  61.         return $this->g;
  62.     }
  63.     public function setG(?bool $g): self
  64.     {
  65.         $this->$g;
  66.         return $this;
  67.     }
  68.     public function getS(): ?bool
  69.     {
  70.         return $this->s;
  71.     }
  72.     public function setS(?bool $s): self
  73.     {
  74.         $this->$s;
  75.         return $this;
  76.     }
  77.     public function getD(): ?bool
  78.     {
  79.         return $this->d;
  80.     }
  81.     public function setD(?bool $d): self
  82.     {
  83.         $this->$d;
  84.         return $this;
  85.     }
  86.     public function getEng(): ?bool
  87.     {
  88.         return $this->eng;
  89.     }
  90.     public function setEng(?bool $eng): self
  91.     {
  92.         $this->eng $eng;
  93.         return $this;
  94.     }
  95.     public function getAll(): ?bool
  96.     {
  97.         return $this->all;
  98.     }
  99.     public function setAll(?bool $all): self
  100.     {
  101.         $this->all $all;
  102.         return $this;
  103.     }
  104.     public function getWeight(): ?bool
  105.     {
  106.         return $this->weight;
  107.     }
  108.     public function setWeight(?bool $weight): self
  109.     {
  110.         $this->weight $weight;
  111.         return $this;
  112.     }
  113.     public function getText(): ?string
  114.     {
  115.         return $this->text;
  116.     }
  117.     public function setText(?string $text): self
  118.     {
  119.         $this->text $text;
  120.         return $this;
  121.     }
  122.     public function getBody(): ?string
  123.     {
  124.     return $this->body;
  125.     }
  126.     public function setBody(?string $body): self
  127.     {
  128.         $this->body $body;
  129.         return $this;
  130.     }
  131. }