Passed
Push — master ( 2ef82e...763b30 )
by Biao
04:00
created
src/Swoole/Process/CustomProcessTrait.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 
12 12
     public function addCustomProcesses(Server $swoole, $processPrefix, array $processes, array $laravelConfig)
13 13
     {
14
-        $pidfile = dirname($swoole->setting['pid_file']) . '/' . $this->customProcessPidFile;
14
+        $pidfile = dirname($swoole->setting['pid_file']).'/'.$this->customProcessPidFile;
15 15
         if (file_exists($pidfile)) {
16 16
             unlink($pidfile);
17 17
         }
@@ -29,9 +29,9 @@  discard block
 block discarded – undo
29 29
                 continue;
30 30
             }
31 31
             $processClass = $item['class'];
32
-            $restartInterval = isset($item['restart_interval']) ? (int)$item['restart_interval'] : 5;
33
-            $callback = function (Process $worker) use ($pidfile, $swoole, $processPrefix, $processClass, $restartInterval, $name, $laravelConfig) {
34
-                file_put_contents($pidfile, $worker->pid . "\n", FILE_APPEND | LOCK_EX);
32
+            $restartInterval = isset($item['restart_interval']) ? (int) $item['restart_interval'] : 5;
33
+            $callback = function(Process $worker) use ($pidfile, $swoole, $processPrefix, $processClass, $restartInterval, $name, $laravelConfig) {
34
+                file_put_contents($pidfile, $worker->pid."\n", FILE_APPEND | LOCK_EX);
35 35
                 $this->initLaravel($laravelConfig, $swoole);
36 36
                 if (!isset(class_implements($processClass)[CustomProcessInterface::class])) {
37 37
                     throw new \InvalidArgumentException(
@@ -45,13 +45,13 @@  discard block
 block discarded – undo
45 45
                 /**@var CustomProcessInterface $processClass */
46 46
                 $this->setProcessTitle(sprintf('%s laravels: %s process', $processPrefix, $name));
47 47
 
48
-                Process::signal(SIGUSR1, function ($signo) use ($name, $processClass, $worker, $pidfile, $swoole) {
48
+                Process::signal(SIGUSR1, function($signo) use ($name, $processClass, $worker, $pidfile, $swoole) {
49 49
                     $this->info(sprintf('Reloading %s process[PID=%d].', $name, $worker->pid));
50 50
                     $processClass::onReload($swoole, $worker);
51 51
                 });
52 52
 
53 53
                 if (method_exists($processClass, 'onStop')) {
54
-                    Process::signal(SIGTERM, function ($signo) use ($name, $processClass, $worker, $pidfile, $swoole) {
54
+                    Process::signal(SIGTERM, function($signo) use ($name, $processClass, $worker, $pidfile, $swoole) {
55 55
                         $this->info(sprintf('Stopping %s process[PID=%d].', $name, $worker->pid));
56 56
                         $processClass::onStop($swoole, $worker);
57 57
                     });
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 
60 60
                 $coroutineAvailable = class_exists('Swoole\Coroutine');
61 61
                 $coroutineRuntimeAvailable = class_exists('Swoole\Runtime');
62
-                $runProcess = function () use ($name, $processClass, $restartInterval, $swoole, $worker, $coroutineAvailable, $coroutineRuntimeAvailable) {
62
+                $runProcess = function() use ($name, $processClass, $restartInterval, $swoole, $worker, $coroutineAvailable, $coroutineRuntimeAvailable) {
63 63
                     $coroutineRuntimeAvailable && \Swoole\Runtime::enableCoroutine();
64 64
                     $this->callWithCatchException([$processClass, 'callback'], [$swoole, $worker]);
65 65
                     // Avoid frequent process creation
Please login to merge, or discard this patch.
src/Swoole/Timer/TimerTrait.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@  discard block
 block discarded – undo
24 24
             $config['jobs'][] = CheckGlobalTimerAliveCronJob::class;
25 25
         }
26 26
 
27
-        $callback = function (Process $process) use ($swoole, $config, $laravelConfig) {
28
-            $pidfile = dirname($swoole->setting['pid_file']) . '/' . $this->timerPidFile;
27
+        $callback = function(Process $process) use ($swoole, $config, $laravelConfig) {
28
+            $pidfile = dirname($swoole->setting['pid_file']).'/'.$this->timerPidFile;
29 29
             file_put_contents($pidfile, $process->pid);
30 30
             $this->setProcessTitle(sprintf('%s laravels: timer process', $config['process_prefix']));
31 31
             $this->initLaravel($laravelConfig, $swoole);
@@ -39,13 +39,13 @@  discard block
 block discarded – undo
39 39
 
40 40
             $timerIds = $this->registerTimers($config['jobs']);
41 41
 
42
-            Process::signal(SIGUSR1, function ($signo) use ($config, $timerIds, $process) {
42
+            Process::signal(SIGUSR1, function($signo) use ($config, $timerIds, $process) {
43 43
                 foreach ($timerIds as $timerId) {
44 44
                     if (Timer::exists($timerId)) {
45 45
                         Timer::clear($timerId);
46 46
                     }
47 47
                 }
48
-                Timer::after($config['max_wait_time'] * 1000, function () use ($process) {
48
+                Timer::after($config['max_wait_time'] * 1000, function() use ($process) {
49 49
                     $process->exit(0);
50 50
                 });
51 51
             });
@@ -76,9 +76,9 @@  discard block
 block discarded – undo
76 76
             if (empty($job->interval())) {
77 77
                 throw new \InvalidArgumentException(sprintf('The interval of %s cannot be empty', get_class($job)));
78 78
             }
79
-            $runJob = function () use ($job) {
80
-                $runCallback = function () use ($job) {
81
-                    $this->callWithCatchException(function () use ($job) {
79
+            $runJob = function() use ($job) {
80
+                $runCallback = function() use ($job) {
81
+                    $this->callWithCatchException(function() use ($job) {
82 82
                         if (($job instanceof CheckGlobalTimerAliveCronJob) || $job::isEnable()) {
83 83
                             $job->run();
84 84
                         }
Please login to merge, or discard this patch.
src/Swoole/Timer/RenewGlobalTimerLockCronJob.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 {
12 12
     public function interval()
13 13
     {
14
-        return (int)(static::GLOBAL_TIMER_LOCK_SECONDS * 0.9) * 1000;
14
+        return (int) (static::GLOBAL_TIMER_LOCK_SECONDS * 0.9) * 1000;
15 15
     }
16 16
 
17 17
     public function isImmediate()
Please login to merge, or discard this patch.
src/Swoole/Timer/CronJob.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
 
93 93
     public static function getGlobalTimerCacheKey()
94 94
     {
95
-        return 'laravels:timer:' . strtolower(self::$globalTimerLockKey);
95
+        return 'laravels:timer:'.strtolower(self::$globalTimerLockKey);
96 96
     }
97 97
 
98 98
     public static function getGlobalTimerLock()
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
         $expire = self::GLOBAL_TIMER_LOCK_SECONDS;
106 106
         $result = $redis->set($key, $value, 'ex', $expire, 'nx');
107 107
         // Compatible with Predis and PhpRedis
108
-        return $result === true || ((string)$result === 'OK');
108
+        return $result === true || ((string) $result === 'OK');
109 109
     }
110 110
 
111 111
     protected static function getCurrentInstanceId()
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
     {
118 118
         /**@var \Illuminate\Redis\Connections\PhpRedisConnection $redis */
119 119
         $redis = app('redis');
120
-        return (bool)$redis->exists(self::getGlobalTimerCacheKey());
120
+        return (bool) $redis->exists(self::getGlobalTimerCacheKey());
121 121
     }
122 122
 
123 123
     public static function isCurrentTimerAlive()
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
     {
134 134
         /**@var \Illuminate\Redis\Connections\PhpRedisConnection $redis */
135 135
         $redis = app('redis');
136
-        return (bool)$redis->expire(self::getGlobalTimerCacheKey(), $expire);
136
+        return (bool) $redis->expire(self::getGlobalTimerCacheKey(), $expire);
137 137
     }
138 138
 
139 139
     public static function setGlobalTimerLockKey($lockKey)
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
 
144 144
     public static function setEnable($enable)
145 145
     {
146
-        self::$enable = (bool)$enable;
146
+        self::$enable = (bool) $enable;
147 147
     }
148 148
 
149 149
     public static function isEnable()
Please login to merge, or discard this patch.
src/Swoole/Timer/CheckGlobalTimerAliveCronJob.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 {
12 12
     public function interval()
13 13
     {
14
-        return (int)(static::GLOBAL_TIMER_LOCK_SECONDS * 0.9) * 1000;
14
+        return (int) (static::GLOBAL_TIMER_LOCK_SECONDS * 0.9) * 1000;
15 15
     }
16 16
 
17 17
     public function isImmediate()
Please login to merge, or discard this patch.
src/Components/Apollo/Process.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
                 'class'    => self::class,
21 21
                 'redirect' => false,
22 22
                 'pipe'     => 0,
23
-                'enable'   => (bool)getenv('ENABLE_APOLLO'),
23
+                'enable'   => (bool) getenv('ENABLE_APOLLO'),
24 24
             ],
25 25
         ];
26 26
     }
@@ -29,11 +29,11 @@  discard block
 block discarded – undo
29 29
     {
30 30
         $filename = base_path('.env');
31 31
         if (isset($_ENV['APP_ENV'])) {
32
-            $filename .= '.' . $_ENV['APP_ENV'];
32
+            $filename .= '.'.$_ENV['APP_ENV'];
33 33
         }
34 34
 
35 35
         self::$apollo = Client::createFromEnv();
36
-        self::$apollo->startWatchNotification(function (array $notifications) use ($process, $filename) {
36
+        self::$apollo->startWatchNotification(function(array $notifications) use ($process, $filename) {
37 37
             $configs = self::$apollo->pullAllAndSave($filename);
38 38
             app('log')->info('[ApolloProcess] Pull all configurations', $configs);
39 39
             $process->exec(PHP_BINARY, [base_path('bin/laravels'), 'reload']);
Please login to merge, or discard this patch.
src/Illuminate/LaravelSCommand.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 
22 22
     public function handle()
23 23
     {
24
-        $action = (string)$this->argument('action');
24
+        $action = (string) $this->argument('action');
25 25
         switch ($action) {
26 26
             case 'publish':
27 27
                 $this->publish();
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     {
54 54
         // Load configuration laravel.php manually for Lumen
55 55
         $basePath = config('laravels.laravel_base_path') ?: base_path();
56
-        if ($this->isLumen() && file_exists($basePath . '/config/laravels.php')) {
56
+        if ($this->isLumen() && file_exists($basePath.'/config/laravels.php')) {
57 57
             $this->getLaravel()->configure('laravels');
58 58
         }
59 59
     }
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
                 $laravelSVersion,
111 111
             ],
112 112
             [
113
-                $this->getApplication()->getName() . ' [<info>' . env('APP_ENV', config('app.env')) . '</info>]',
113
+                $this->getApplication()->getName().' [<info>'.env('APP_ENV', config('app.env')).'</info>]',
114 114
                 $this->getApplication()->getVersion(),
115 115
             ],
116 116
         ]);
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
     {
121 121
         $this->comment('>>> Protocols');
122 122
 
123
-        $config = unserialize((string)file_get_contents($this->getConfPath()));
123
+        $config = unserialize((string) file_get_contents($this->getConfPath()));
124 124
         $ssl = isset($config['server']['swoole']['ssl_key_file'], $config['server']['swoole']['ssl_cert_file']);
125 125
         $socketType = isset($config['server']['socket_type']) ? $config['server']['socket_type'] : SWOOLE_SOCK_TCP;
126 126
         if (in_array($socketType, [SWOOLE_SOCK_UNIX_DGRAM, SWOOLE_SOCK_UNIX_STREAM])) {
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
                 continue;
161 161
             }
162 162
 
163
-            $name = 'Port#' . $key . ' ';
163
+            $name = 'Port#'.$key.' ';
164 164
             $name .= isset($socketTypeNames[$socket['type']]) ? $socketTypeNames[$socket['type']] : 'Unknown socket';
165 165
             $tableRows [] = [
166 166
                 $name,
@@ -188,8 +188,8 @@  discard block
 block discarded – undo
188 188
         $laravelConf = [
189 189
             'root_path'           => $svrConf['laravel_base_path'],
190 190
             'static_path'         => $svrConf['swoole']['document_root'],
191
-            'cleaners'            => array_unique((array)Arr::get($svrConf, 'cleaners', [])),
192
-            'register_providers'  => array_unique((array)Arr::get($svrConf, 'register_providers', [])),
191
+            'cleaners'            => array_unique((array) Arr::get($svrConf, 'cleaners', [])),
192
+            'register_providers'  => array_unique((array) Arr::get($svrConf, 'register_providers', [])),
193 193
             'destroy_controllers' => Arr::get($svrConf, 'destroy_controllers', []),
194 194
             'is_lumen'            => $this->isLumen(),
195 195
             '_SERVER'             => $_SERVER,
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
             $svrConf['ignore_check_pid'] = false;
223 223
         }
224 224
         if (empty($svrConf['swoole']['document_root'])) {
225
-            $svrConf['swoole']['document_root'] = $svrConf['laravel_base_path'] . '/public';
225
+            $svrConf['swoole']['document_root'] = $svrConf['laravel_base_path'].'/public';
226 226
         }
227 227
         if ($this->option('daemonize')) {
228 228
             $svrConf['swoole']['daemonize'] = true;
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
         }
238 238
 
239 239
         // Set X-Version
240
-        $xVersion = (string)$this->option('x-version');
240
+        $xVersion = (string) $this->option('x-version');
241 241
         if ($xVersion !== '') {
242 242
             $_SERVER['X_VERSION'] = $_ENV['X_VERSION'] = $xVersion;
243 243
         }
@@ -264,34 +264,34 @@  discard block
 block discarded – undo
264 264
     public function publish()
265 265
     {
266 266
         $basePath = config('laravels.laravel_base_path') ?: base_path();
267
-        $configPath = $basePath . '/config/laravels.php';
267
+        $configPath = $basePath.'/config/laravels.php';
268 268
         $todoList = [
269 269
             [
270
-                'from' => realpath(__DIR__ . '/../../config/laravels.php'),
270
+                'from' => realpath(__DIR__.'/../../config/laravels.php'),
271 271
                 'to'   => $configPath,
272 272
                 'mode' => 0644,
273 273
             ],
274 274
             [
275
-                'from' => realpath(__DIR__ . '/../../bin/laravels'),
276
-                'to'   => $basePath . '/bin/laravels',
275
+                'from' => realpath(__DIR__.'/../../bin/laravels'),
276
+                'to'   => $basePath.'/bin/laravels',
277 277
                 'mode' => 0755,
278 278
                 'link' => true,
279 279
             ],
280 280
             [
281
-                'from' => realpath(__DIR__ . '/../../bin/fswatch'),
282
-                'to'   => $basePath . '/bin/fswatch',
281
+                'from' => realpath(__DIR__.'/../../bin/fswatch'),
282
+                'to'   => $basePath.'/bin/fswatch',
283 283
                 'mode' => 0755,
284 284
                 'link' => true,
285 285
             ],
286 286
             [
287
-                'from' => realpath(__DIR__ . '/../../bin/inotify'),
288
-                'to'   => $basePath . '/bin/inotify',
287
+                'from' => realpath(__DIR__.'/../../bin/inotify'),
288
+                'to'   => $basePath.'/bin/inotify',
289 289
                 'mode' => 0755,
290 290
                 'link' => true,
291 291
             ],
292 292
         ];
293 293
         if (file_exists($configPath)) {
294
-            $choice = $this->anticipate($configPath . ' already exists, do you want to override it ? Y/N',
294
+            $choice = $this->anticipate($configPath.' already exists, do you want to override it ? Y/N',
295 295
                 ['Y', 'N'],
296 296
                 'N'
297 297
             );
Please login to merge, or discard this patch.
src/Swoole/Server.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 
38 38
         $ip = isset($conf['listen_ip']) ? $conf['listen_ip'] : '127.0.0.1';
39 39
         $port = isset($conf['listen_port']) ? $conf['listen_port'] : 5200;
40
-        $socketType = isset($conf['socket_type']) ? (int)$conf['socket_type'] : SWOOLE_SOCK_TCP;
40
+        $socketType = isset($conf['socket_type']) ? (int) $conf['socket_type'] : SWOOLE_SOCK_TCP;
41 41
 
42 42
         if ($socketType === SWOOLE_SOCK_UNIX_STREAM) {
43 43
             $socketDir = dirname($ip);
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 
94 94
     protected function triggerWebSocketEvent($event, array $params)
95 95
     {
96
-        return $this->callWithCatchException(function () use ($event, $params) {
96
+        return $this->callWithCatchException(function() use ($event, $params) {
97 97
             $handler = $this->getWebSocketHandler();
98 98
 
99 99
             if (method_exists($handler, $event)) {
@@ -108,19 +108,19 @@  discard block
 block discarded – undo
108 108
     protected function bindWebSocketEvents()
109 109
     {
110 110
         if ($this->enableWebSocket) {
111
-            $this->swoole->on('HandShake', function () {
111
+            $this->swoole->on('HandShake', function() {
112 112
                 return $this->triggerWebSocketEvent('onHandShake', func_get_args());
113 113
             });
114 114
 
115
-            $this->swoole->on('Open', function () {
115
+            $this->swoole->on('Open', function() {
116 116
                 $this->triggerWebSocketEvent('onOpen', func_get_args());
117 117
             });
118 118
 
119
-            $this->swoole->on('Message', function () {
119
+            $this->swoole->on('Message', function() {
120 120
                 $this->triggerWebSocketEvent('onMessage', func_get_args());
121 121
             });
122 122
 
123
-            $this->swoole->on('Close', function (WebSocketServer $server, $fd, $reactorId) {
123
+            $this->swoole->on('Close', function(WebSocketServer $server, $fd, $reactorId) {
124 124
                 $clientInfo = $server->getClientInfo($fd);
125 125
                 if (isset($clientInfo['websocket_status']) && $clientInfo['websocket_status'] === \WEBSOCKET_STATUS_FRAME) {
126 126
                     $this->triggerWebSocketEvent('onClose', func_get_args());
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
 
133 133
     protected function triggerPortEvent(Port $port, $handlerClass, $event, array $params)
134 134
     {
135
-        return $this->callWithCatchException(function () use ($port, $handlerClass, $event, $params) {
135
+        return $this->callWithCatchException(function() use ($port, $handlerClass, $event, $params) {
136 136
             $handler = $this->getSocketHandler($port, $handlerClass);
137 137
 
138 138
             if (method_exists($handler, $event)) {
@@ -177,8 +177,8 @@  discard block
 block discarded – undo
177 177
                 'BufferEmpty',
178 178
             ];
179 179
             foreach ($events as $event) {
180
-                $port->on($event, function () use ($port, $handlerClass, $event) {
181
-                    $this->triggerPortEvent($port, $handlerClass, 'on' . $event, func_get_args());
180
+                $port->on($event, function() use ($port, $handlerClass, $event) {
181
+                    $this->triggerPortEvent($port, $handlerClass, 'on'.$event, func_get_args());
182 182
                 });
183 183
             }
184 184
         }
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
 
228 228
     protected function bindSwooleTables()
229 229
     {
230
-        $tables = isset($this->conf['swoole_tables']) ? (array)$this->conf['swoole_tables'] : [];
230
+        $tables = isset($this->conf['swoole_tables']) ? (array) $this->conf['swoole_tables'] : [];
231 231
         foreach ($tables as $name => $table) {
232 232
             $t = new Table($table['size']);
233 233
             foreach ($table['column'] as $column) {
@@ -324,7 +324,7 @@  discard block
 block discarded – undo
324 324
         $headers = [
325 325
             'Upgrade'               => 'websocket',
326 326
             'Connection'            => 'Upgrade',
327
-            'Sec-WebSocket-Accept'  => base64_encode(sha1($secKey . '258EAFA5-E914-47DA-95CA-C5AB0DC85B11', true)),
327
+            'Sec-WebSocket-Accept'  => base64_encode(sha1($secKey.'258EAFA5-E914-47DA-95CA-C5AB0DC85B11', true)),
328 328
             'Sec-WebSocket-Version' => '13',
329 329
         ];
330 330
 
@@ -370,7 +370,7 @@  discard block
 block discarded – undo
370 370
             if (!($listener instanceof Listener)) {
371 371
                 throw new \InvalidArgumentException(sprintf('%s must extend the abstract class %s', $listenerClass, Listener::class));
372 372
             }
373
-            $this->callWithCatchException(function () use ($listener) {
373
+            $this->callWithCatchException(function() use ($listener) {
374 374
                 $listener->handle();
375 375
             }, [], $event->getTries());
376 376
         }
@@ -379,7 +379,7 @@  discard block
 block discarded – undo
379 379
 
380 380
     protected function handleTask(Task $task)
381 381
     {
382
-        return $this->callWithCatchException(function () use ($task) {
382
+        return $this->callWithCatchException(function() use ($task) {
383 383
             $task->handle();
384 384
             return true;
385 385
         }, [], $task->getTries());
@@ -388,7 +388,7 @@  discard block
 block discarded – undo
388 388
     protected function fireEvent($event, $interface, array $arguments)
389 389
     {
390 390
         if (isset($this->conf['event_handlers'][$event])) {
391
-            $eventHandlers = (array)$this->conf['event_handlers'][$event];
391
+            $eventHandlers = (array) $this->conf['event_handlers'][$event];
392 392
             foreach ($eventHandlers as $eventHandler) {
393 393
                 if (!isset(class_implements($eventHandler)[$interface])) {
394 394
                     throw new \InvalidArgumentException(sprintf(
@@ -398,7 +398,7 @@  discard block
 block discarded – undo
398 398
                         )
399 399
                     );
400 400
                 }
401
-                $this->callWithCatchException(function () use ($eventHandler, $arguments) {
401
+                $this->callWithCatchException(function() use ($eventHandler, $arguments) {
402 402
                     call_user_func_array([(new $eventHandler), 'handle'], $arguments);
403 403
                 });
404 404
             }
Please login to merge, or discard this patch.
src/Components/HttpClient/SimpleHttpTrait.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -31,10 +31,10 @@  discard block
 block discarded – undo
31 31
             $parts = parse_url($url);
32 32
             $path = isset($parts['path']) ? $parts['path'] : '/';
33 33
             if (isset($parts['query'])) {
34
-                $path .= '?' . $parts['query'];
34
+                $path .= '?'.$parts['query'];
35 35
             }
36 36
             if (isset($parts['fragment'])) {
37
-                $path .= '#' . $parts['fragment'];
37
+                $path .= '#'.$parts['fragment'];
38 38
             }
39 39
             $client = new CoroutineClient($parts['host'], isset($parts['port']) ? $parts['port'] : 80, isset($parts['scheme']) && $parts['scheme'] === 'https');
40 40
             if (isset($options['timeout'])) {
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
                 continue;
91 91
             }
92 92
             if (isset($headers[$key])) {
93
-                $headers[$key] = (array)$headers[$key];
93
+                $headers[$key] = (array) $headers[$key];
94 94
                 $headers[$key][] = isset($middle[1]) ? trim($middle[1]) : '';
95 95
             } else {
96 96
                 $headers[$key] = isset($middle[1]) ? trim($middle[1]) : '';
Please login to merge, or discard this patch.