]> Raphaël G. Git Repositories - airbundle/commitdiff
Rename end field in length
authorRaphaël Gertz <git@rapsys.eu>
Thu, 14 Nov 2019 22:44:01 +0000 (23:44 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Thu, 14 Nov 2019 22:44:01 +0000 (23:44 +0100)
Entity/Slot.php

index 03bfd3f8e929e528aebe2806a676fc10117e34a6..12a0acad74ba48c232f8067ba93bd2c3fb6f0cc6 100644 (file)
@@ -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');
     }
 }