X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/c9dfa6d8941bcd0dedf0f938c53d86fa7b59e4ae..38bbc6345098782376b9a0d14de901bc7af9cf0b:/Entity/Civility.php diff --git a/Entity/Civility.php b/Entity/Civility.php index ea8b95b..ca2aee1 100644 --- a/Entity/Civility.php +++ b/Entity/Civility.php @@ -11,6 +11,7 @@ namespace Rapsys\UserBundle\Entity; +use Doctrine\Common\Collections\Collection; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\ORM\Event\PreUpdateEventArgs; @@ -21,40 +22,36 @@ use Rapsys\UserBundle\Entity\User; */ class Civility { /** - * @var integer + * Primary key */ - protected $id; + protected ?int $id = null; /** - * @var string + * Creation datetime */ - protected $title; + protected \DateTime $created; /** - * @var \DateTime + * Update datetime */ - protected $created; + protected \DateTime $updated; /** - * @var \DateTime + * Users collection */ - protected $updated; - - /** - * @var ArrayCollection - */ - protected $users; + protected Collection $users; /** * Constructor * * @param string $title The civility name */ - public function __construct(string $title) { + public function __construct(protected string $title) { //Set defaults - $this->title = $title; $this->created = new \DateTime('now'); $this->updated = new \DateTime('now'); + + //Set collections $this->users = new ArrayCollection(); } @@ -63,7 +60,7 @@ class Civility { * * @return integer */ - public function getId(): int { + public function getId(): ?int { return $this->id; }