X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/58242917a50ec39071529953e77343fd3eb6dda0..44ca119872ad23165c36255122a5205679ace380:/Entity/Slot.php?ds=sidebyside

diff --git a/Entity/Slot.php b/Entity/Slot.php
index 03bfd3f..12a0aca 100644
--- a/Entity/Slot.php
+++ b/Entity/Slot.php
@@ -20,7 +20,7 @@ class Slot
     /**
      * @var \DateTime
      */
-    private $end;
+    private $length;
 
     /**
      * @var \DateTime
@@ -80,27 +80,27 @@ class Slot
     }
 
     /**
-     * Set end
+     * Set length
      *
-     * @param \DateTime $end
+     * @param \DateTime $length
      *
      * @return Slot
      */
-    public function setEnd($end)
+    public function setLength($length)
     {
-        $this->end = $end;
+        $this->length = $length;
 
         return $this;
     }
 
     /**
-     * Get end
+     * Get length
      *
      * @return \DateTime
      */
-    public function getEnd()
+    public function getLength()
     {
-        return $this->end;
+        return $this->length;
     }
 
     /**
@@ -186,6 +186,7 @@ class Slot
     }
 
     public function getTitle() {
-	    return $this->begin->format('H:i').'-'.$this->end->format('H:i');
+	    //TODO: replace that with computed time
+	    return $this->begin->format('H:i').'+'.$this->length->format('H:i');
     }
 }