From: Raphaƫl Gertz Date: Thu, 7 Mar 2024 17:46:25 +0000 (+0100) Subject: Strict types X-Git-Tag: 0.4.0~6 X-Git-Url: https://git.rapsys.eu/userbundle/commitdiff_plain/09388c0e8247c60b1f01360944d9ad416810b77b Strict types Cleanup --- diff --git a/Entity/Civility.php b/Entity/Civility.php index ea8b95b..d1ccec3 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; @@ -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(); diff --git a/Entity/Group.php b/Entity/Group.php index aa60f77..d155002 100644 --- a/Entity/Group.php +++ b/Entity/Group.php @@ -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 Group { /** * @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 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'); $this->users = new ArrayCollection(); @@ -85,7 +80,7 @@ class Group { * * @return string */ - public function getTitle(): ?string { + public function getTitle(): string { return $this->title; } diff --git a/Entity/User.php b/Entity/User.php index 299303b..380c7ff 100644 --- a/Entity/User.php +++ b/Entity/User.php @@ -14,6 +14,7 @@ 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; @@ -154,10 +155,10 @@ class User implements UserInterface, PasswordAuthenticatedUserInterface { } /** - * Get password - * * {@inheritdoc} * + * Get password + * * @return string */ public function getPassword(): string {