X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/2e8c21a0c5d7d2d26d127497bb990f15c9df445d..1c1dc3ad15562f9e6e714e231524f0da87f78734:/Entity/User.php

diff --git a/Entity/User.php b/Entity/User.php
index 299303b..5220e77 100644
--- a/Entity/User.php
+++ b/Entity/User.php
@@ -14,33 +14,34 @@ namespace Rapsys\UserBundle\Entity;
 use Doctrine\Common\Collections\Collection;
 use Doctrine\Common\Collections\ArrayCollection;
 use Doctrine\ORM\Event\PreUpdateEventArgs;
-use Symfony\Component\Security\Core\User\UserInterface;
-use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
 
 use Rapsys\UserBundle\Entity\Civility;
 use Rapsys\UserBundle\Entity\Group;
 
+use Symfony\Component\Security\Core\User\UserInterface;
+use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
+
 /**
  * User
  */
 class User implements UserInterface, PasswordAuthenticatedUserInterface {
 	/**
-	 * @var ?integer
+	 * Primary key
 	 */
-	protected ?int $id;
+	protected ?int $id = null;
 
 	/**
-	 * @var \DateTime
+	 * Create datetime
 	 */
 	protected \DateTime $created;
 
 	/**
-	 * @var \DateTime
+	 * Update datetime
 	 */
 	protected \DateTime $updated;
 
 	/**
-	 * @var Doctrine\Common\Collections\Collection
+	 * Groups collection
 	 */
 	protected Collection $groups;
 
@@ -154,10 +155,10 @@ class User implements UserInterface, PasswordAuthenticatedUserInterface {
 	}
 
 	/**
-	 * Get password
-	 *
 	 * {@inheritdoc}
 	 *
+	 * Get password
+	 *
 	 * @return string
 	 */
 	public function getPassword(): string {