Rapsys Git
/
airbundle
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add google token repository
[airbundle]
/
Entity
/
Application.php
diff --git
a/Entity/Application.php
b/Entity/Application.php
index b54b1e2e4cf42a20d5fbab633032d6fd4dc0b3de..5d3120360342c6761cf51c76bca43fe7e2df1a60 100644
(file)
--- a/
Entity/Application.php
+++ b/
Entity/Application.php
@@
-22,6
+22,11
@@
class Application {
*/
private $id;
*/
private $id;
+ /**
+ * @var Dance
+ */
+ private $dance;
+
/**
* @var float
*/
/**
* @var float
*/
@@
-56,6
+61,11
@@
class Application {
* Constructor
*/
public function __construct() {
* Constructor
*/
public function __construct() {
+ //Set defaults
+ $this->score = null;
+ $this->canceled = null;
+ $this->created = new \DateTime('now');
+ $this->updated = new \DateTime('now');
$this->session = null;
$this->user = null;
}
$this->session = null;
$this->user = null;
}
@@
-69,6
+79,28
@@
class Application {
return $this->id;
}
return $this->id;
}
+ /**
+ * Set dance
+ *
+ * @param Dance $dance
+ *
+ * @return Application
+ */
+ public function setDance(Dance $dance): Application {
+ $this->dance = $dance;
+
+ return $this;
+ }
+
+ /**
+ * Get dance
+ *
+ * @return Dance
+ */
+ public function getDance(): Dance {
+ return $this->dance;
+ }
+
/**
* Set score
*
/**
* Set score
*
@@
-206,9
+238,9
@@
class Application {
*/
public function preUpdate(PreUpdateEventArgs $eventArgs) {
//Check that we have an application instance
*/
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
//Set updated value
- $
user
->setUpdated(new \DateTime('now'));
+ $
application
->setUpdated(new \DateTime('now'));
}
}
}
}
}
}