src/Entity/AppConfig.php line 9
<?phpnamespace App\Entity;use App\Repository\AppConfigRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: AppConfigRepository::class)]class AppConfig{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\OneToOne(inversedBy: 'appConfig', cascade: ['persist', 'remove'])]#[ORM\JoinColumn(nullable: false)]private ?SriInfo $company = null;#[ORM\Column(nullable: true)]private ?bool $basicConfig = null;public function getId(): ?int{return $this->id;}public function getCompany(): ?SriInfo{return $this->company;}public function setCompany(SriInfo $company): self{$this->company = $company;return $this;}public function isBasicConfig(): ?bool{return $this->basicConfig;}public function setBasicConfig(?bool $basicConfig): self{$this->basicConfig = $basicConfig;return $this;}}