src/Entity/IceCreamVideos.php line 10
<?phpnamespace App\Entity;use App\Repository\IceCreamVideosRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Table(name: 'ice_cream_videos')]#[ORM\Entity(repositoryClass: IceCreamVideosRepository::class)]class IceCreamVideos{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(type: 'string', nullable: true)]private ?string $video = null;public function getId(): ?int{return $this->id;}public function getVideo(): ?string{return $this->video;}public function setVideo(?string $video): void{$this->video = $video;}}