]> Raphaƫl G. Git Repositories - userbundle/blobdiff - Entity/Group.php
Cleanup
[userbundle] / Entity / Group.php
index aa60f77e0f9e48c3a77a1a42f6aa154b53e89806..670e5b797aae86ef150c558e739ff15e33697e50 100644 (file)
@@ -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 Group {
        /**
-        * @var integer
+        * Primary key
         */
-       protected $id;
+       protected ?int $id = null;
 
        /**
-        * @var string
+        * Create 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 group 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 Group {
         *
         * @return integer
         */
-       public function getId(): int {
+       public function getId(): ?int {
                return $this->id;
        }
 
@@ -85,7 +82,7 @@ class Group {
         *
         * @return string
         */
-       public function getTitle(): ?string {
+       public function getTitle(): string {
                return $this->title;
        }