<?phpnamespace App\Entity;use App\Repository\KeeperRepository;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass=KeeperRepository::class) */class Keeper{ /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; public function getId(): ?int { return $this->id; }}