*/
private $id;
+ /**
+ * @var Dance
+ */
+ private $dance;
+
/**
* @var float
*/
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
*
*/
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'));
}
}
}
*/
public function preUpdate(PreUpdateEventArgs $eventArgs) {
//Check that we have a location instance
- if (($user = $eventArgs->getEntity()) instanceof Location) {
+ if (($location = $eventArgs->getEntity()) instanceof Location) {
//Set updated value
- $user->setUpdated(new \DateTime('now'));
+ $location->setUpdated(new \DateTime('now'));
}
}
*/
private $application;
- /**
- * @var Dance
- */
- private $dance;
-
/**
* @var Location
*/
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
*
*/
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'));
}
}
*/
public function preUpdate(PreUpdateEventArgs $eventArgs) {
//Check that we have a slot instance
- if (($user = $eventArgs->getEntity()) instanceof Slot) {
+ if (($slot = $eventArgs->getEntity()) instanceof Slot) {
//Set updated value
- $user->setUpdated(new \DateTime('now'));
+ $slot->setUpdated(new \DateTime('now'));
}
}