]> Raphaƫl G. Git Repositories - airbundle/blobdiff - Entity/Application.php
Remove dance link on session
[airbundle] / Entity / Application.php
index b54b1e2e4cf42a20d5fbab633032d6fd4dc0b3de..48e69929edb8fd4d2163638124f73b2cfc859bbe 100644 (file)
@@ -22,6 +22,11 @@ class Application {
         */
        private $id;
 
+       /**
+        * @var Dance
+        */
+       private $dance;
+
        /**
         * @var float
         */
@@ -69,6 +74,28 @@ class Application {
                return $this->id;
        }
 
+       /**
+        * 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 score
         *
@@ -206,9 +233,9 @@ class Application {
         */
        public function preUpdate(PreUpdateEventArgs $eventArgs) {
                //Check that we have an application instance
-               if (($user = $eventArgs->getEntity()) instanceof Application) {
+               if (($application = $eventArgs->getEntity()) instanceof Application) {
                        //Set updated value
-                       $user->setUpdated(new \DateTime('now'));
+                       $application->setUpdated(new \DateTime('now'));
                }
        }
 }