Passed
Branch master (73f5a3)
by Toni
02:45
created
src/SchedulableEventCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
     {
68 68
         $filteredEvents = array_filter(
69 69
             iterator_to_array($this->events),
70
-            function (SchedulableEvent $scheduledEvent) use ($event) {
70
+            function(SchedulableEvent $scheduledEvent) use ($event) {
71 71
                 return $event->equals($scheduledEvent->event());
72 72
             }
73 73
         );
Please login to merge, or discard this patch.
tests/SchedulerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -288,7 +288,7 @@
 block discarded – undo
288 288
         $exprStub = $this->getTemporalExpression();
289 289
         $exprStub
290 290
             ->method('includes')
291
-            ->will($this->returnCallback(function (DateTimeInterface $date) use ($includedDates) {
291
+            ->will($this->returnCallback(function(DateTimeInterface $date) use ($includedDates) {
292 292
                 return in_array($date, $includedDates);
293 293
             }));
294 294
 
Please login to merge, or discard this patch.