@@ -67,7 +67,7 @@ |
||
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 | ); |
@@ -288,7 +288,7 @@ |
||
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 |