Completed
Push — master ( 645e3e...9b8965 )
by Igor
02:59
created
Schedule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
      */
78 78
     public function dueEvents(Application $app)
79 79
     {
80
-        return array_filter($this->_events, function (Event $event) use ($app) {
80
+        return array_filter($this->_events, function(Event $event) use ($app) {
81 81
             return $event->isDue($app);
82 82
         });
83 83
     }
Please login to merge, or discard this patch.
ScheduleController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
         }
106 106
 
107 107
         $schedule = $this->schedule;
108
-        call_user_func(function () use ($schedule, $scheduleFile) {
108
+        call_user_func(function() use ($schedule, $scheduleFile) {
109 109
             include $scheduleFile;
110 110
         });
111 111
     }
Please login to merge, or discard this patch.
Event.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -597,7 +597,7 @@  discard block
 block discarded – undo
597 597
         }
598 598
         $addresses = is_array($addresses) ? $addresses : func_get_args();
599 599
 
600
-        return $this->then(function (Application $app) use ($addresses) {
600
+        return $this->then(function(Application $app) use ($addresses) {
601 601
             $this->emailOutput($app->mailer, $addresses);
602 602
         });
603 603
     }
@@ -654,7 +654,7 @@  discard block
 block discarded – undo
654 654
      */
655 655
     public function thenPing($url)
656 656
     {
657
-        return $this->then(function () use ($url) {
657
+        return $this->then(function() use ($url) {
658 658
             (new HttpClient())->get($url);
659 659
         });
660 660
     }
Please login to merge, or discard this patch.