Completed
Push — master ( 4a85c2...e72a9a )
by Song
05:32
created
src/Command.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 
68 68
     public function handleArguments()
69 69
     {
70
-        $serverOptions = array_map(function ($option) {
70
+        $serverOptions = array_map(function($option) {
71 71
             return "$option:";
72 72
         }, Server::$validServerOptions);
73 73
 
@@ -213,17 +213,17 @@  discard block
 block discarded – undo
213 213
     {
214 214
         error_reporting(-1);
215 215
 
216
-        set_error_handler(function ($level, $message, $file = '', $line = 0) {
216
+        set_error_handler(function($level, $message, $file = '', $line = 0) {
217 217
             if (error_reporting() & $level) {
218 218
                 throw new ErrorException($message, 0, $level, $file, $line);
219 219
             }
220 220
         });
221 221
 
222
-        set_exception_handler(function ($e) {
222
+        set_exception_handler(function($e) {
223 223
             $this->handleUncaughtException($e);
224 224
         });
225 225
 
226
-        register_shutdown_function(function () {
226
+        register_shutdown_function(function() {
227 227
             $this->handleShutdown();
228 228
         });
229 229
     }
Please login to merge, or discard this patch.
src/Server.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
      */
147 147
     protected function resolveApplication()
148 148
     {
149
-        if (! $this->app) {
149
+        if (!$this->app) {
150 150
             require $this->basePath('bootstrap/app.php');
151 151
         }
152 152
 
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
 
156 156
     protected function snapshotApplication()
157 157
     {
158
-        if (! $this->appSnapshot) {
158
+        if (!$this->appSnapshot) {
159 159
             $this->appSnapshot = clone Application::getInstance();
160 160
         }
161 161
     }
Please login to merge, or discard this patch.