Completed
Push — master ( efd759...b5775a )
by Patrick
01:46
created
app/Schedules/class.SimplePDF.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
 				    $shift = new \VolunteerShift(false, $shift);
73 73
 				    $participant = $shift->participantObj;
74 74
 				    if($participant !== false)
75
-				    { 
75
+				    {
76 76
 					    $html .= '<tr><td>'.$this->getRoleNameFromID($shift->roleID).'</td><td>'.$participant->getDisplayName('paperName').'</td><td>'.$participant->campName.'</td></tr>';
77 77
 				    }
78 78
 				    else
Please login to merge, or discard this patch.
app/Schedules/class.GridSchedule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -232,7 +232,7 @@
 block discarded – undo
232 232
         while($shift)
233 233
         {
234 234
             $timeDiff = $originalStartTime->diff($shift['startTime']);
235
-            $hoursFromStart = ($timeDiff->d * 24)+$timeDiff->h;
235
+            $hoursFromStart = ($timeDiff->d * 24) + $timeDiff->h;
236 236
             $rowForShift = $this->getRowForShift($shift['roleID'], $rows, $hoursFromStart + 2, $sheat);
237 237
             $this->createShiftCell($sheat, $hoursFromStart + 2, $rowForShift, $shift);
238 238
             $shift = array_shift($shifts);
Please login to merge, or discard this patch.