|
@@ -22,53 +22,53 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
#[ORM\Column(name: "id", type: "integer")]
|
|
|
#[ORM\Id]
|
|
|
#[ORM\GeneratedValue(strategy: "AUTO")]
|
|
|
- private $id;
|
|
|
+ private ?int $id = null;
|
|
|
|
|
|
#[ORM\Column(name: "username", type: "string", length: 191, unique: true)]
|
|
|
- private $username;
|
|
|
+ private ?string $username = null;
|
|
|
|
|
|
#[ORM\Column(name: "prenom", type: "string", length: 191, nullable: true)]
|
|
|
- private $prenom;
|
|
|
+ private ?string $prenom = null;
|
|
|
|
|
|
#[ORM\Column(name: "nom", type: "string", length: 191, nullable: true)]
|
|
|
- private $nom;
|
|
|
+ private ?string $nom = null;
|
|
|
|
|
|
#[ORM\Column(name: "mail", type: "string", length: 191, unique: true)]
|
|
|
#[Assert\Email()]
|
|
|
- private $mail;
|
|
|
+ private ?string $mail = null;
|
|
|
|
|
|
#[ORM\Column(name: "password", type: "string", length: 191)]
|
|
|
- private $password;
|
|
|
+ private ?string $password = null;
|
|
|
|
|
|
#[ORM\Column(name: "token", type: "string", length: 191, unique: true)]
|
|
|
|
|
|
- private $token;
|
|
|
+ private ?string $token = null;
|
|
|
|
|
|
#[ORM\Column(name: "token_validity", type: "datetime")]
|
|
|
#[Assert\Type("DateTime")]
|
|
|
- private $tokenValidity;
|
|
|
+ private ?\DateTimeInterface $tokenValidity = null;
|
|
|
|
|
|
#[ORM\Column(name: "salt", type: "string", length: 191, nullable: true)]
|
|
|
- private $salt;
|
|
|
+ private ?string $salt = null;
|
|
|
|
|
|
#[ORM\Column(name: "is_active", type: "boolean")]
|
|
|
- private $isActive;
|
|
|
+ private ?bool $isActive = null;
|
|
|
|
|
|
#[ORM\Column(name: "roles", type: "array")]
|
|
|
- private $roles = array();
|
|
|
+ private ?array $roles = array();
|
|
|
|
|
|
#[ORM\ManyToMany(targetEntity: Film::class, mappedBy: "usersWantToView")]
|
|
|
- private $films;
|
|
|
+ private ?Collection $films = null;
|
|
|
|
|
|
#[ORM\ManyToMany(targetEntity: Film::class, mappedBy: "usersWhoSeen")]
|
|
|
- private $filmsVus;
|
|
|
+ private ?Collection $filmsVus = null;
|
|
|
|
|
|
#[ORM\OneToOne(targetEntity: Profile::class, mappedBy: "user", cascade: ["persist", "remove"])]
|
|
|
- private $profile;
|
|
|
+ private ?Profile $profile = null;
|
|
|
|
|
|
#[ORM\Column(name: "last_activity", type: "datetime")]
|
|
|
#[Assert\Type("DateTime")]
|
|
|
- private $lastActivity;
|
|
|
+ private ?\DateTimeInterface $lastActivity = null;
|
|
|
|
|
|
public function getLastActivity(): ?\DateTimeInterface
|
|
|
{
|
|
@@ -82,7 +82,7 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
return $this;
|
|
|
}
|
|
|
|
|
|
- public function isActiveNow(): bool
|
|
|
+ public function isActiveNow(): ?bool
|
|
|
{
|
|
|
$delay = new \DateTime('5 minutes ago');
|
|
|
|
|
@@ -94,7 +94,7 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
return $this->id;
|
|
|
}
|
|
|
|
|
|
- public function setUsername($username): self
|
|
|
+ public function setUsername(?string $username): self
|
|
|
{
|
|
|
$this->username = $username;
|
|
|
|
|
@@ -111,14 +111,14 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
return $this->username;
|
|
|
}
|
|
|
|
|
|
- public function setActivated($activated): self
|
|
|
+ public function setActivated(?bool $activated): self
|
|
|
{
|
|
|
$this->isActive = $activated;
|
|
|
|
|
|
return $this;
|
|
|
}
|
|
|
|
|
|
- public function getActivated(): bool
|
|
|
+ public function getActivated(): ?bool
|
|
|
{
|
|
|
return $this->isActive;
|
|
|
}
|
|
@@ -128,7 +128,7 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
return $this->prenom;
|
|
|
}
|
|
|
|
|
|
- public function setPrenom($prenom): self
|
|
|
+ public function setPrenom(?string $prenom): self
|
|
|
{
|
|
|
$this->prenom = $prenom;
|
|
|
|
|
@@ -140,7 +140,7 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
return $this->nom;
|
|
|
}
|
|
|
|
|
|
- public function setNom($nom): self
|
|
|
+ public function setNom(?string $nom): self
|
|
|
{
|
|
|
$this->nom = $nom;
|
|
|
|
|
@@ -152,14 +152,14 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
return $this->mail;
|
|
|
}
|
|
|
|
|
|
- public function setMail($mail): self
|
|
|
+ public function setMail(?string $mail): self
|
|
|
{
|
|
|
$this->mail = $mail;
|
|
|
|
|
|
return $this;
|
|
|
}
|
|
|
|
|
|
- public function setPassword($password): self
|
|
|
+ public function setPassword(?string $password): self
|
|
|
{
|
|
|
$this->password = $password;
|
|
|
|
|
@@ -171,7 +171,7 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
return $this->password;
|
|
|
}
|
|
|
|
|
|
- public function setSalt($salt): self
|
|
|
+ public function setSalt(?string $salt): self
|
|
|
{
|
|
|
$this->salt = $salt;
|
|
|
|
|
@@ -188,7 +188,7 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
return $this->token;
|
|
|
}
|
|
|
|
|
|
- public function setToken($token): self
|
|
|
+ public function setToken(?string $token): self
|
|
|
{
|
|
|
//$this->token = hash("sha512", uniqid());
|
|
|
$this->token = $token;
|
|
@@ -202,14 +202,14 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
return $this->tokenValidity;
|
|
|
}
|
|
|
|
|
|
- private function setTokenValidity(\DateTimeInterface $tokenValidity): self
|
|
|
+ private function setTokenValidity(?\DateTimeInterface $tokenValidity): self
|
|
|
{
|
|
|
$this->tokenValidity = $tokenValidity;
|
|
|
|
|
|
return $this;
|
|
|
}
|
|
|
|
|
|
- public function isValidToken(): bool
|
|
|
+ public function isValidToken(): ?bool
|
|
|
{
|
|
|
$expire = (new \DateTime($this->getTokenValidity()->format("Y-m-d H:i:s")))->modify('+1 hour');
|
|
|
dump($expire);
|
|
@@ -217,7 +217,7 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
return ( $expire > new \DateTime('now') );
|
|
|
}
|
|
|
|
|
|
- public function setRoles($roles): self
|
|
|
+ public function setRoles(?array $roles): self
|
|
|
{
|
|
|
$this->roles = $roles;
|
|
|
|
|
@@ -227,7 +227,7 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
/**
|
|
|
* @see UserInterface
|
|
|
*/
|
|
|
- public function getRoles(): array
|
|
|
+ public function getRoles(): ?array
|
|
|
{
|
|
|
$roles = $this->roles;
|
|
|
return array_unique($roles);
|
|
@@ -249,14 +249,14 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
|
|
|
///////////////////////////////////////////////////////////////
|
|
|
|
|
|
- public function addFilm(\App\Entity\Film $film): self
|
|
|
+ public function addFilm(Film $film): self
|
|
|
{
|
|
|
$this->films[] = $film;
|
|
|
|
|
|
return $this;
|
|
|
}
|
|
|
|
|
|
- public function removeFilm(\App\Entity\Film $film): self
|
|
|
+ public function removeFilm(Film $film): self
|
|
|
{
|
|
|
$this->films->removeElement($film);
|
|
|
|
|
@@ -270,14 +270,14 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
- public function addFilmVu(\App\Entity\Film $film): self
|
|
|
+ public function addFilmVu(Film $film): self
|
|
|
{
|
|
|
$this->filmsVus[] = $film;
|
|
|
|
|
|
return $this;
|
|
|
}
|
|
|
|
|
|
- public function removeFilmVu(\App\Entity\Film $film): self
|
|
|
+ public function removeFilmVu(Film $film): self
|
|
|
{
|
|
|
$this->filmsVus->removeElement($film);
|
|
|
|
|
@@ -298,22 +298,22 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
return $this->getPrenom()." ".$this->getNom();
|
|
|
}
|
|
|
|
|
|
- public function isAccountNonExpired(): bool
|
|
|
+ public function isAccountNonExpired(): ?bool
|
|
|
{
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
- public function isAccountNonLocked(): bool
|
|
|
+ public function isAccountNonLocked(): ?bool
|
|
|
{
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
- public function isCredentialsNonExpired(): bool
|
|
|
+ public function isCredentialsNonExpired(): ?bool
|
|
|
{
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
- public function isEnabled(): bool
|
|
|
+ public function isEnabled(): ?bool
|
|
|
{
|
|
|
return $this->isActive;
|
|
|
}
|
|
@@ -330,7 +330,7 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
));
|
|
|
}
|
|
|
|
|
|
- public function unserialize($serialized):void
|
|
|
+ public function unserialize(?string $serialized):void
|
|
|
{
|
|
|
list (
|
|
|
$this->id,
|
|
@@ -343,12 +343,12 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
) = unserialize($serialized, array('allowed_classes' => false));
|
|
|
}
|
|
|
|
|
|
- public function wantToSee(Film $film): bool
|
|
|
+ public function wantToSee(Film $film): ?bool
|
|
|
{
|
|
|
return $this->getFilms()->contains($film);
|
|
|
}
|
|
|
|
|
|
- public function haveSeen(Film $film): bool
|
|
|
+ public function haveSeen(Film $film): ?bool
|
|
|
{
|
|
|
return $this->getFilmsVus()->contains($film);
|
|
|
}
|
|
@@ -358,7 +358,7 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
return $this->profile;
|
|
|
}
|
|
|
|
|
|
- public function setProfile(Profile $profile): self
|
|
|
+ public function setProfile(?Profile $profile): self
|
|
|
{
|
|
|
// set the owning side of the relation if necessary
|
|
|
if ($profile->getUser() !== $this) {
|