]> Raphaƫl G. Git Repositories - userbundle/blobdiff - Entity/Civility.php
Strict types
[userbundle] / Entity / Civility.php
index ea8b95b1a0ec1c3ed5c6c0c884b6aea759c2fd6b..d1ccec37fe9b787d62f7337b65d2ed34cf254c21 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;
 
@@ -23,36 +24,30 @@ class Civility {
        /**
         * @var integer
         */
-       protected $id;
-
-       /**
-        * @var string
-        */
-       protected $title;
+       protected int $id;
 
        /**
         * @var \DateTime
         */
-       protected $created;
+       protected \DateTime $created;
 
        /**
         * @var \DateTime
         */
-       protected $updated;
+       protected \DateTime $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');
                $this->users = new ArrayCollection();