Completed
Push — master ( dbb88a...a26c6d )
by Akihito
02:15
created
src/Snidel.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
         foreach ($this->signals as $sig) {
82 82
             $this->pcntl->signal(
83 83
                 $sig,
84
-                function ($sig) {
84
+                function($sig) {
85 85
                     $this->log->info('received signal. signo: ' . $sig);
86 86
                     $this->receivedSignal = $sig;
87 87
 
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
             }
152 152
 
153 153
             $result = new Result();
154
-            register_shutdown_function(function () use ($result) {
154
+            register_shutdown_function(function() use ($result) {
155 155
                 $data = $this->dataRepository->load(getmypid());
156 156
                 try {
157 157
                     $data->write($result);
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
 
247 247
         if ($tag === null) {
248 248
             return array_map(
249
-                function ($fork) {
249
+                function($fork) {
250 250
                     return $fork->getResult()->getReturn();
251 251
                 },
252 252
                 $this->forkContainer->get()
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
         }
275 275
 
276 276
         return array_map(
277
-            function ($fork) {
277
+            function($fork) {
278 278
                 return $fork->getResult()->getReturn();
279 279
             },
280 280
             $this->forkContainer->get($tag)
Please login to merge, or discard this patch.