Passed
Push — master ( 85ac65...f48784 )
by Sebastiaan
03:37
created
src/Schedule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      */
37 37
     public function dueEvents()
38 38
     {
39
-        return array_filter($this->events, function (Event $event) {
39
+        return array_filter($this->events, function(Event $event) {
40 40
             return $event->isDue();
41 41
         });
42 42
     }
Please login to merge, or discard this patch.
src/Event.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
         }
124 124
 
125 125
         if ($this->cwd) {
126
-            $command .=  'cd ' . $this->cwd . '; ';
126
+            $command .= 'cd ' . $this->cwd . '; ';
127 127
         }
128 128
 
129 129
         if ($this->user) {
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
      */
259 259
     private function inTimeInterval($startTime, $endTime)
260 260
     {
261
-        return function () use ($startTime, $endTime) {
261
+        return function() use ($startTime, $endTime) {
262 262
             $now = Carbon::now()->getTimestamp();
263 263
             return $now >= strtotime($startTime) && $now <= strtotime($endTime);
264 264
         };
Please login to merge, or discard this patch.