X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/f0ed7af138b95f31354f8d5a37cb4cd27b902a75..0fef6d04b13ead8ded7ce2bb73b617f5409890b9:/Entity/Session.php

diff --git a/Entity/Session.php b/Entity/Session.php
index 084580e..70b2fc4 100644
--- a/Entity/Session.php
+++ b/Entity/Session.php
@@ -49,7 +49,7 @@ class Session {
 	private $stop;
 
 	/**
-	 * @var boolean
+	 * @var bool
 	 */
 	private $premium;
 
@@ -149,6 +149,7 @@ class Session {
 		$this->locked = null;
 		$this->created = new \DateTime('now');
 		$this->updated = new \DateTime('now');
+		$this->application = null;
 		$this->applications = new ArrayCollection();
 	}
 
@@ -285,7 +286,7 @@ class Session {
 	/**
 	 * Set premium
 	 *
-	 * @param boolean $premium
+	 * @param bool $premium
 	 *
 	 * @return Session
 	 */
@@ -628,7 +629,7 @@ class Session {
 	 *
 	 * @return Session
 	 */
-	public function setApplication(Application $application): Session {
+	public function setApplication(?Application $application): Session {
 		$this->application = $application;
 
 		return $this;