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