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