X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/c21ece30ad66b4ce32444c7c913bf65883000b66..361215f4c3800be010a0b86a96934ca3c0202fc9:/Entity/User.php

diff --git a/Entity/User.php b/Entity/User.php
index 151f1a1..22bf46d 100644
--- a/Entity/User.php
+++ b/Entity/User.php
@@ -42,10 +42,12 @@ class User extends BaseUser {
 
 	/**
 	 * Constructor
+	 *
+	 * @param string $mail The user mail
 	 */
-	public function __construct() {
+	public function __construct(string $mail) {
 		//Call parent constructor
-		parent::__construct();
+		parent::__construct($mail);
 
 		//Set collections
 		$this->applications = new \Doctrine\Common\Collections\ArrayCollection();