src/Entity/LegalEntity.php line 18
<?phpdeclare(strict_types=1);namespace App\Entity;use App\Entity\Mapped\NamedEntity;use App\Repository\LegalEntityRepository;use Doctrine\ORM\Mapping as ORM;use Symfony\Component\Validator\Constraints as Assert;#[ORM\Entity(repositoryClass: LegalEntityRepository::class)]#[ORM\Table(name: 'legal_entity')]class LegalEntity extends NamedEntity{#[ORM\Column(name: 'remark',type: 'text',nullable: true)]#[Assert\NotBlank(groups: ['action'])]private ?string $remark = null;public function getRemark(): ?string{return $this->remark;}public function setRemark(?string $remark): self{$this->remark = $remark;return $this;}}