src/Entity/Logs.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\LogsRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassLogsRepository::class)]
  7. class Logs
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255)]
  14.     private ?string $type null;
  15.     #[ORM\Column]
  16.     private array $content = [];
  17.     #[ORM\ManyToOne(inversedBy'logs')]
  18.     #[ORM\JoinColumn(nullablefalse)]
  19.     private ?User $user null;
  20.     #[ORM\ManyToOne(inversedBy'logs')]
  21.     #[ORM\JoinColumn(nullablefalse)]
  22.     private ?Project $projet null;
  23.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  24.     private ?\DateTimeInterface $createdAt null;
  25.     #[ORM\ManyToOne(inversedBy'logs')]
  26.     private ?ProjectDeliverable $livrable null;
  27.     #[ORM\ManyToOne(inversedBy'logs')]
  28.     private ?DeliverableVersions $idVersion null;
  29.     public function getId(): ?int
  30.     {
  31.         return $this->id;
  32.     }
  33.     public function getType(): ?string
  34.     {
  35.         return $this->type;
  36.     }
  37.     public function setType(string $type): self
  38.     {
  39.         $this->type $type;
  40.         return $this;
  41.     }
  42.     public function getContent(): array
  43.     {
  44.         return $this->content;
  45.     }
  46.     public function setContent(array $content): self
  47.     {
  48.         $this->content $content;
  49.         return $this;
  50.     }
  51.     public function getUser(): ?User
  52.     {
  53.         return $this->user;
  54.     }
  55.     public function setUser(?User $user): self
  56.     {
  57.         $this->user $user;
  58.         return $this;
  59.     }
  60.     public function getProjet(): ?Project
  61.     {
  62.         return $this->projet;
  63.     }
  64.     public function setProjet(?Project $projet): self
  65.     {
  66.         $this->projet $projet;
  67.         return $this;
  68.     }
  69.     public function getCreatedAt(): ?\DateTimeInterface
  70.     {
  71.         return $this->createdAt;
  72.     }
  73.     public function setCreatedAt(\DateTimeInterface $createdAt): self
  74.     {
  75.         $this->createdAt $createdAt;
  76.         return $this;
  77.     }
  78.     public function getLivrable(): ?ProjectDeliverable
  79.     {
  80.         return $this->livrable;
  81.     }
  82.     public function setLivrable(?ProjectDeliverable $livrable): self
  83.     {
  84.         $this->livrable $livrable;
  85.         return $this;
  86.     }
  87.     public function getIdVersion(): ?DeliverableVersions
  88.     {
  89.         return $this->idVersion;
  90.     }
  91.     public function setIdVersion(?DeliverableVersions $idVersion): self
  92.     {
  93.         $this->idVersion $idVersion;
  94.         return $this;
  95.     }
  96. }