X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/5305ca069746c39ab9271fdf4ee9e14287237c21..32b9912accd3c35c7830a068af7de189bdde7136:/Entity/Group.php?ds=inline

diff --git a/Entity/Group.php b/Entity/Group.php
index 901fbc6..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;
 	}
 
@@ -169,7 +164,7 @@ class Group {
 	 */
 	public function preUpdate(PreUpdateEventArgs $eventArgs) {
 		//Check that we have a group instance
-		if (($user = $eventArgs->getEntity()) instanceof Group) {
+		if (($user = $eventArgs->getObject()) instanceof Group) {
 			//Set updated value
 			$user->setUpdated(new \DateTime('now'));
 		}