Passed
Push — master ( 19eefc...9f50d2 )
by Shiyu
02:25
created
src/Proxy.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,9 +88,9 @@
 block discarded – undo
88 88
 
89 89
         $ex = 0;
90 90
 
91
-        async(function () {
91
+        async(function() {
92 92
             yield $this->getCommand()->execute($this->bootstrap);
93
-        })->catch(function (Throwable $e) use (&$ex) {
93
+        })->catch(function(Throwable $e) use (&$ex) {
94 94
             $ex = 1;
95 95
             $this->failure($e);
96 96
             $this->exits();
Please login to merge, or discard this patch.
src/Initializer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,6 +124,6 @@
 block discarded – undo
124 124
      */
125 125
     private function provides() : array
126 126
     {
127
-        return (defined('CWD') && is_file($cf = CWD . '/commands.php')) ? (array) include $cf : [];
127
+        return (defined('CWD') && is_file($cf = CWD.'/commands.php')) ? (array) include $cf : [];
128 128
     }
129 129
 }
Please login to merge, or discard this patch.