src/Entity/Log.php line 10
<?phpnamespace App\Entity;use App\Repository\LogRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: LogRepository::class)]class Log{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(length: 255, nullable: true)]private ?string $activityName = null;#[ORM\Column(length: 255, nullable: true)]private ?string $activityDescription = null;#[ORM\Column(length: 255, nullable: true)]private ?string $userName = null;#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]private ?\DateTimeInterface $dateAjout = null;public function getId(): ?int{return $this->id;}public function getActivityName(): ?string{return $this->activityName;}public function setActivityName(?string $activityName): static{$this->activityName = $activityName;return $this;}public function getActivityDescription(): ?string{return $this->activityDescription;}public function setActivityDescription(?string $activityDescription): static{$this->activityDescription = $activityDescription;return $this;}public function getUserName(): ?string{return $this->userName;}public function setUserName(?string $userName): static{$this->userName = $userName;return $this;}public function getDateAjout(): ?\DateTimeInterface{return $this->dateAjout;}public function setDateAjout(?\DateTimeInterface $dateAjout): self{$this->dateAjout = $dateAjout;return $this;}}