From: Raphaƫl Gertz <git@rapsys.eu>
Date: Tue, 4 Oct 2022 05:34:24 +0000 (+0200)
Subject: Set application as optional
X-Git-Tag: 0.3.0~234
X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/784154a5f5c2db99cf21685b8f949a8136eef5bc

Set application as optional
Cleanup
---

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;