src/Entity/PlanningUpdateDateTime.php line 10
<?phpnamespace App\Entity;use App\Repository\PlanningUpdateDateTimeRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: PlanningUpdateDateTimeRepository::class)]class PlanningUpdateDateTime{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\ManyToOne]#[ORM\JoinColumn(nullable: false)]private ?User $user = null;#[ORM\Column(type: Types::DATE_MUTABLE)]private ?\DateTimeInterface $date = null;#[ORM\Column(type: Types::DATETIME_MUTABLE)]private ?\DateTimeInterface $dateUpdate = null;#[ORM\ManyToOne(inversedBy: 'planningUpdateDateTimes')]private ?User $userUpdate = null;public function getId(): ?int{return $this->id;}public function getUser(): ?User{return $this->user;}public function setUser(?User $user): static{$this->user = $user;return $this;}public function getDate(): ?\DateTimeInterface{return $this->date;}public function setDate(\DateTimeInterface $date): static{$this->date = $date;return $this;}public function getDateUpdate(): ?\DateTimeInterface{return $this->dateUpdate;}public function setDateUpdate(\DateTimeInterface $dateUpdate): static{$this->dateUpdate = $dateUpdate;return $this;}public function getUserUpdate(): ?User{return $this->userUpdate;}public function setUserUpdate(?User $userUpdate): static{$this->userUpdate = $userUpdate;return $this;}}