<?php
namespace App\Entity;
use App\Repository\GlobalDisciplineAnabledConfigRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: GlobalDisciplineAnabledConfigRepository::class)]
class GlobalDisciplineAnabledConfig
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
public function getId(): ?int
{
return $this->id;
}
}