/
var
/
www
/
html
/
amply
/
vendor
/
symfony
/
maker-bundle
/
src
/
Resources
/
skeleton
/
doctrine
/
Upload File
HOME
<?= "<?php\n" ?> namespace <?= $namespace ?>; <?php if ($api_resource): ?>use ApiPlatform\Core\Annotation\ApiResource; <?php endif ?> use <?= $repository_full_class_name ?>; use Doctrine\ORM\Mapping as ORM; <?php if ($broadcast): ?>use Symfony\UX\Turbo\Attribute\Broadcast; <?php endif ?> /** <?php if ($api_resource && !$use_attributes): ?> * @ApiResource() <?php endif ?> <?php if ($broadcast && !$use_attributes): ?> * @Broadcast() <?php endif ?> * @ORM\Entity(repositoryClass=<?= $repository_class_name ?>::class) <?php if ($should_escape_table_name): ?> * @ORM\Table(name="`<?= $table_name ?>`") <?php endif ?> */ <?php if ($api_resource && $use_attributes): ?> #[ApiResource] <?php endif ?> <?php if ($broadcast && $use_attributes): ?> #[Broadcast] <?php endif ?> class <?= $class_name."\n" ?> { /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; public function getId(): ?int { return $this->id; } }