src/Entity/Documents.php line 9
<?phpnamespace App\Entity;use App\Repository\DocumentsRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: DocumentsRepository::class)]class Documents{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(length: 255)]private ?string $title = null;#[ORM\Column(length: 255)]private ?string $category = null;#[ORM\Column(type: 'string')]private ?string $filePath = null;public function getId(): ?int{return $this->id;}public function getTitle(): ?string{return $this->title;}public function setTitle(string $title): static{$this->title = $title;return $this;}public function getCategory(): ?string{return $this->category;}public function setCategory(string $category): static{$this->category = $category;return $this;}/*** Get the value of filePath*/public function getFilePath(): ?string{return $this->filePath;}/*** Set the value of filePath*/public function setFilePath(string $filePath): self{$this->filePath = $filePath;return $this;}}