<?phpnamespace App\Entity;use ApiPlatform\Core\Annotation\ApiResource;/** * * @ApiResource() */class Mystem{ private $c; private $w; private $l; private $i; private $g; private $s; private $d; private $eng; private $all; private $weight; private $format; private $text; private $body; public function getC(): ?bool { return $this->c; } public function setC(?bool $c): self { $this->c = $c; return $this; } public function getW(): ?bool { return $this->w; } public function setW(?bool $w): self { $this->w = $w; return $this; } public function getL(): ?bool { return $this->l; } public function setL(?bool $l): self { $this->l = $l; return $this; } public function getI(): ?bool { return $this->i; } public function setI(?bool $i): self { $this->i = $i; return $this; } public function getG(): ?bool { return $this->g; } public function setG(?bool $g): self { $this->g = $g; return $this; } public function getS(): ?bool { return $this->s; } public function setS(?bool $s): self { $this->s = $s; return $this; } public function getD(): ?bool { return $this->d; } public function setD(?bool $d): self { $this->d = $d; return $this; } public function getEng(): ?bool { return $this->eng; } public function setEng(?bool $eng): self { $this->eng = $eng; return $this; } public function getAll(): ?bool { return $this->all; } public function setAll(?bool $all): self { $this->all = $all; return $this; } public function getWeight(): ?bool { return $this->weight; } public function setWeight(?bool $weight): self { $this->weight = $weight; return $this; } public function getText(): ?string { return $this->text; } public function setText(?string $text): self { $this->text = $text; return $this; } public function getBody(): ?string { return $this->body; } public function setBody(?string $body): self { $this->body = $body; return $this; }}