X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/26d52d915d28e80e31035300c5932d34a579aaa4..666f2659c61898eb5707aca424f7c89c835261df:/Entity/Session.php diff --git a/Entity/Session.php b/Entity/Session.php index e2ffc7a..20d50dd 100644 --- a/Entity/Session.php +++ b/Entity/Session.php @@ -81,6 +81,11 @@ class Session { */ private $temperaturemax; + /** + * @var \DateTime + */ + private $locked; + /** * @var \DateTime */ @@ -433,6 +438,28 @@ class Session { return $this->temperaturemax; } + /** + * Set locked + * + * @param \DateTime $locked + * + * @return Session + */ + public function setLocked($locked) { + $this->locked = $locked; + + return $this; + } + + /** + * Get locked + * + * @return \DateTime + */ + public function getLocked() { + return $this->locked; + } + /** * Set created *