<?phpnamespace App\Domain\Entity\Translation;use Locastic\ApiPlatformTranslationBundle\Model\AbstractTranslation;/** * Class CommentTranslation * @package App\Domain\Entity\Translation */class CommentTranslation extends AbstractTranslation{ public ?int $id; private ?string $value = null; /** * @return string|null */ public function getValue(): ?string { return $this->value; } /** * @param string|null $text */ public function setValue(?string $text): void { $this->value = $text; }}