X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/9aad88c45d93dadacd35176364b56df4734c017b..15a735d7556a74b145b8c1aa3dbf8e93e9662131:/Entity/Session.php?ds=sidebyside

diff --git a/Entity/Session.php b/Entity/Session.php
index f5f0ef5..084580e 100644
--- a/Entity/Session.php
+++ b/Entity/Session.php
@@ -113,11 +113,6 @@ class Session {
 	 */
 	private $application;
 
-	/**
-	 * @var Dance
-	 */
-	private $dance;
-
 	/**
 	 * @var Location
 	 */
@@ -137,10 +132,12 @@ class Session {
 	 * Constructor
 	 */
 	public function __construct() {
+		//Set defaults
 		$this->begin = null;
 		$this->start = null;
 		$this->length = null;
 		$this->stop = null;
+		$this->premium = null;
 		$this->rainfall = null;
 		$this->rainrisk = null;
 		$this->realfeel = null;
@@ -150,7 +147,8 @@ class Session {
 		$this->temperaturemin = null;
 		$this->temperaturemax = null;
 		$this->locked = null;
-		$this->premium = null;
+		$this->created = new \DateTime('now');
+		$this->updated = new \DateTime('now');
 		$this->applications = new ArrayCollection();
 	}
 
@@ -579,28 +577,6 @@ class Session {
 		return $this->applications;
 	}
 
-	/**
-	 * Set dance
-	 *
-	 * @param Dance $dance
-	 *
-	 * @return Session
-	 */
-	public function setDance(Dance $dance): Session {
-		$this->dance = $dance;
-
-		return $this;
-	}
-
-	/**
-	 * Get dance
-	 *
-	 * @return Dance
-	 */
-	public function getDance(): Dance {
-		return $this->dance;
-	}
-
 	/**
 	 * Set location
 	 *
@@ -672,9 +648,9 @@ class Session {
 	 */
 	public function preUpdate(PreUpdateEventArgs $eventArgs) {
 		//Check that we have a session instance
-		if (($user = $eventArgs->getEntity()) instanceof Session) {
+		if (($session = $eventArgs->getEntity()) instanceof Session) {
 			//Set updated value
-			$user->setUpdated(new \DateTime('now'));
+			$session->setUpdated(new \DateTime('now'));
 		}
 	}