Completed
Push — master ( 16a555...3e8e3b )
by Julián
06:53
created
src/Watcher/Environment.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,6 @@
 block discarded – undo
82 82
     /**
83 83
      * Test for environment variable.
84 84
      *
85
-     * @param string $var
86 85
      *
87 86
      * @return bool
88 87
      */
Please login to merge, or discard this patch.
src/Watcher/Cron.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -202,7 +202,7 @@
 block discarded – undo
202 202
         $interval = $this->interval;
203 203
 
204 204
         return array_map(
205
-            function (\DateTime $start) use ($interval) {
205
+            function(\DateTime $start) use ($interval) {
206 206
                 $end = clone $start;
207 207
                 $end->add($interval);
208 208
 
Please login to merge, or discard this patch.
src/Runner.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@
 block discarded – undo
137 137
 
138 138
         usort(
139 139
             $scheduledTimes,
140
-            function ($time1, $time2) {
140
+            function($time1, $time2) {
141 141
                 if ($time1['start'] == $time2['start']) {
142 142
                     return 0;
143 143
                 }
Please login to merge, or discard this patch.