Passed
Push — master ( 92d93f...feff91 )
by Albert
04:27 queued 02:14
created
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.