Completed
Branch master (7e5548)
by Bernhard
09:21
created
src/Formatter/Grouped.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@
 block discarded – undo
118 118
         $firstBooking = end($tasks)->getStartBooking();
119 119
 
120 120
         // begin the string generation
121
-        $result = $ticketId . '     ' .  $firstBooking->getTime() . ' -> ' . $lastBooking->getTime() . '
121
+        $result = $ticketId . '     ' . $firstBooking->getTime() . ' -> ' . $lastBooking->getTime() . '
122 122
 ====================================================
123 123
     ' . $ticketList;
124 124
 
Please login to merge, or discard this patch.
src/Entities/TaskFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
         $startBooking = null;
47 47
         $intermediateBookings = array();
48 48
         $bookingsCount = count($bookings) - 1;
49
-        for ($i = $bookingsCount; $i >= 0; $i --) {
49
+        for ($i = $bookingsCount; $i >= 0; $i--) {
50 50
             $booking = $bookings[$i];
51 51
             // set the start booking
52 52
             if (is_null($startBooking) && (($booking->getTicketId() !== Pause::PAUSE_TAG_START && $booking->getTicketId() !== Pause::PAUSE_TAG_END) || $includePauses)) {
Please login to merge, or discard this patch.