src/Entity/Documents.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\DocumentsRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassDocumentsRepository::class)]
  7. class Documents
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private int $id;
  13.     #[ORM\Column(length255)]
  14.     private ?string $path;
  15.     #[ORM\Column(length255)]
  16.     private string $name;
  17.     public function getId(): int
  18.     {
  19.         return $this->id;
  20.     }
  21.     public function getPath(): string
  22.     {
  23.         return $this->path;
  24.     }
  25.     public function setPath(string $path): self
  26.     {
  27.         $this->path $path;
  28.         return $this;
  29.     }
  30.     public function getName(): string
  31.     {
  32.         return $this->name;
  33.     }
  34.     public function setName(string $name): self
  35.     {
  36.         $this->name $name;
  37.         return $this;
  38.     }
  39. }