Passed
Pull Request — master (#195)
by
unknown
04:36
created
src/Server/helpers.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 /**
4 4
  * This is only for `function not exists` in config/swoole_http.php.
5 5
  */
6
-if (! function_exists('swoole_cpu_num')) {
6
+if (!function_exists('swoole_cpu_num')) {
7 7
     function swoole_cpu_num(): int
8 8
     {
9 9
         return 1;
@@ -13,10 +13,10 @@  discard block
 block discarded – undo
13 13
 /**
14 14
  * This is only for `function not exists` in config/swoole_http.php.
15 15
  */
16
-if (! defined('SWOOLE_SOCK_TCP')) {
16
+if (!defined('SWOOLE_SOCK_TCP')) {
17 17
     define('SWOOLE_SOCK_TCP', 1);
18 18
 }
19 19
 
20
-if (! defined('SWOOLE_PROCESS')) {
20
+if (!defined('SWOOLE_PROCESS')) {
21 21
     define('SWOOLE_PROCESS', 3);
22 22
 }
Please login to merge, or discard this patch.
src/Server/Manager.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
     {
120 120
         foreach ($this->events as $event) {
121 121
             $listener = Str::camel("on_$event");
122
-            $callback = method_exists($this, $listener) ? [$this, $listener] : function () use ($event) {
122
+            $callback = method_exists($this, $listener) ? [$this, $listener] : function() use ($event) {
123 123
                 $this->container->make('events')->fire("swoole.$event", func_get_args());
124 124
             };
125 125
 
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
      */
317 317
     protected function bindSandbox()
318 318
     {
319
-        $this->app->singleton(Sandbox::class, function ($app) {
319
+        $this->app->singleton(Sandbox::class, function($app) {
320 320
             return new Sandbox($app, $this->framework);
321 321
         });
322 322
 
@@ -432,7 +432,7 @@  discard block
 block discarded – undo
432 432
      */
433 433
     protected function normalizeException(Throwable $e)
434 434
     {
435
-        if (! $e instanceof Exception) {
435
+        if (!$e instanceof Exception) {
436 436
             $e = new FatalThrowableError($e);
437 437
         }
438 438
 
Please login to merge, or discard this patch.
src/HotReload/FSProcess.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -62,8 +62,8 @@  discard block
 block discarded – undo
62 62
      */
63 63
     public function make(?callable $callback = null)
64 64
     {
65
-        $mcb = function ($type, $buffer) use ($callback) {
66
-            if (! $this->locked && AppProcess::OUT === $type && $event = FSEventParser::toEvent($buffer)) {
65
+        $mcb = function($type, $buffer) use ($callback) {
66
+            if (!$this->locked && AppProcess::OUT === $type && $event = FSEventParser::toEvent($buffer)) {
67 67
                 $this->locked = true;
68 68
                 ($callback) ? $callback($event) : null;
69 69
                 $this->locked = false;
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
             }
72 72
         };
73 73
 
74
-        return new SwooleProcess(function () use ($mcb) {
74
+        return new SwooleProcess(function() use ($mcb) {
75 75
             (new AppProcess($this->configure()))->setTimeout(0)->run($mcb);
76 76
         }, false, false);
77 77
     }
Please login to merge, or discard this patch.
src/Concerns/InteractsWithWebsocket.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
             // enable sandbox
67 67
             $sandbox->enable();
68 68
             // check if socket.io connection established
69
-            if (! $this->websocketHandler->onOpen($swooleRequest->fd, $illuminateRequest)) {
69
+            if (!$this->websocketHandler->onOpen($swooleRequest->fd, $illuminateRequest)) {
70 70
                 return;
71 71
             }
72 72
             // trigger 'connect' websocket event
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
      */
131 131
     public function onClose($server, $fd, $reactorId)
132 132
     {
133
-        if (! $this->isServerWebsocket($fd) || ! $server instanceof Websocket) {
133
+        if (!$this->isServerWebsocket($fd) || !$server instanceof Websocket) {
134 134
             return;
135 135
         }
136 136
 
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
      */
159 159
     protected function isWebsocketPushPacket($packet)
160 160
     {
161
-        if ( !is_array($packet)) {
161
+        if (!is_array($packet)) {
162 162
             return false;
163 163
         }
164 164
 
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
         $payload = $this->payloadParser->encode($push->getEvent(), $push->getMessage());
181 181
 
182 182
         // attach sender if not broadcast
183
-        if (! $push->isBroadcast() && $push->getSender() && ! $push->hasOwnDescriptor()) {
183
+        if (!$push->isBroadcast() && $push->getSender() && !$push->hasOwnDescriptor()) {
184 184
             $push->addDescriptor($push->getSender());
185 185
         }
186 186
 
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
 
192 192
         // push message to designated fds
193 193
         foreach ($push->getDescriptors() as $descriptor) {
194
-            if ($server->exist($descriptor) || ! $push->isBroadcastToDescriptor((int) $descriptor)) {
194
+            if ($server->exist($descriptor) || !$push->isBroadcastToDescriptor((int) $descriptor)) {
195 195
                 $server->push($descriptor, $payload, $push->getOpcode());
196 196
             }
197 197
         }
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
      */
259 259
     protected function filterWebsocket(array $descriptors): array
260 260
     {
261
-        $callback = function ($descriptor) {
261
+        $callback = function($descriptor) {
262 262
             return $this->isServerWebsocket($descriptor);
263 263
         };
264 264
 
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
     {
275 275
         $handlerClass = $this->container->make('config')->get('swoole_websocket.handler');
276 276
 
277
-        if (! $handlerClass) {
277
+        if (!$handlerClass) {
278 278
             throw new WebsocketNotSetInConfigException;
279 279
         }
280 280
 
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
      */
322 322
     protected function bindRoom(): void
323 323
     {
324
-        $this->app->singleton(RoomContract::class, function (Container $container) {
324
+        $this->app->singleton(RoomContract::class, function(Container $container) {
325 325
             $config = $container->make('config');
326 326
             $driver = $config->get('swoole_websocket.default');
327 327
             $settings = $config->get("swoole_websocket.settings.{$driver}");
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
      */
339 339
     protected function bindWebsocket()
340 340
     {
341
-        $this->app->singleton(Websocket::class, function (Container $app) {
341
+        $this->app->singleton(Websocket::class, function(Container $app) {
342 342
             return new Websocket($app->make(RoomContract::class), new Pipeline($app));
343 343
         });
344 344
 
@@ -353,7 +353,7 @@  discard block
 block discarded – undo
353 353
         $routePath = $this->container->make('config')
354 354
             ->get('swoole_websocket.route_file');
355 355
 
356
-        if (! file_exists($routePath)) {
356
+        if (!file_exists($routePath)) {
357 357
             $routePath = __DIR__ . '/../../routes/websocket.php';
358 358
         }
359 359
 
@@ -389,7 +389,7 @@  discard block
 block discarded – undo
389 389
      */
390 390
     protected function isWebsocketPushPayload($payload): bool
391 391
     {
392
-        if (! is_array($payload)) {
392
+        if (!is_array($payload)) {
393 393
             return false;
394 394
         }
395 395
 
Please login to merge, or discard this patch.
src/Concerns/InteractsWithSwooleQueue.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      */
15 15
     protected function isSwooleQueuePacket($packet)
16 16
     {
17
-        if (! is_string($packet)) {
17
+        if (!is_string($packet)) {
18 18
             return false;
19 19
         }
20 20
 
Please login to merge, or discard this patch.