Completed
Push — master ( 714cb6...87aebd )
by
unknown
14s queued 12s
created
src/Controllers/SocketIOController.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 upgrade(Request $request)
13 13
     {
14
-        if (! in_array($request->input('transport'), $this->transports)) {
14
+        if (!in_array($request->input('transport'), $this->transports)) {
15 15
             return response()->json(
16 16
                 [
17 17
                     'code' => 0,
Please login to merge, or discard this patch.
src/Transformers/Request.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
             $key = str_replace('-', '_', $key);
159 159
             $key = strtoupper($key);
160 160
 
161
-            if (! in_array($key, ['REMOTE_ADDR', 'SERVER_PORT', 'HTTPS'])) {
161
+            if (!in_array($key, ['REMOTE_ADDR', 'SERVER_PORT', 'HTTPS'])) {
162 162
                 $key = 'HTTP_' . $key;
163 163
             }
164 164
 
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
             return false;
188 188
         }
189 189
 
190
-        if (! is_file($fileName) || ! filesize($fileName)) {
190
+        if (!is_file($fileName) || !filesize($fileName)) {
191 191
             return false;
192 192
         }
193 193
 
Please login to merge, or discard this patch.
src/Websocket/SocketIO/WebsocketHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      */
22 22
     public function onOpen($fd, Request $request)
23 23
     {
24
-        if (! $request->input('sid')) {
24
+        if (!$request->input('sid')) {
25 25
             $payload = json_encode(
26 26
                 [
27 27
                     'sid' => base64_encode(uniqid()),
Please login to merge, or discard this patch.
src/Websocket/Websocket.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
         $values = is_string($values) || is_integer($values) ? func_get_args() : $values;
113 113
 
114 114
         foreach ($values as $value) {
115
-            if (! in_array($value, $this->to)) {
115
+            if (!in_array($value, $this->to)) {
116 116
                 $this->to[] = $value;
117 117
             }
118 118
         }
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
     public function emit(string $event, $data): bool
164 164
     {
165 165
         $fds = $this->getFds();
166
-        $assigned = ! empty($this->to);
166
+        $assigned = !empty($this->to);
167 167
 
168 168
         // if no fds are found, but rooms are assigned
169 169
         // that means trying to emit to a non-existing room
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
      */
214 214
     public function on(string $event, $callback)
215 215
     {
216
-        if (! is_string($callback) && ! is_callable($callback)) {
216
+        if (!is_string($callback) && !is_callable($callback)) {
217 217
             throw new InvalidArgumentException(
218 218
                 'Invalid websocket callback. Must be a string or callable.'
219 219
             );
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
      */
247 247
     public function call(string $event, $data = null)
248 248
     {
249
-        if (! $this->eventExists($event)) {
249
+        if (!$this->eventExists($event)) {
250 250
             return null;
251 251
         }
252 252
 
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
      */
321 321
     protected function getFds()
322 322
     {
323
-        $fds = array_filter($this->to, function ($value) {
323
+        $fds = array_filter($this->to, function($value) {
324 324
             return is_integer($value);
325 325
         });
326 326
         $rooms = array_diff($this->to, $fds);
@@ -399,7 +399,7 @@  discard block
 block discarded – undo
399 399
     {
400 400
         $pipeline = $this->pipeline;
401 401
 
402
-        $closure = function () use ($container) {
402
+        $closure = function() use ($container) {
403 403
             $this->container = $container;
404 404
         };
405 405
 
@@ -443,7 +443,7 @@  discard block
 block discarded – undo
443 443
         return $this->pipeline
444 444
             ->send($request)
445 445
             ->through($this->middleware)
446
-            ->then(function ($request) {
446
+            ->then(function($request) {
447 447
                 return $request;
448 448
             });
449 449
     }
Please login to merge, or discard this patch.
src/Websocket/Authenticatable.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
     {
64 64
         $users = is_object($users) ? func_get_args() : $users;
65 65
 
66
-        $userIds = array_map(function (AuthenticatableContract $user) {
66
+        $userIds = array_map(function(AuthenticatableContract $user) {
67 67
             $this->checkUser($user);
68 68
 
69 69
             return $user->getAuthIdentifier();
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
      */
97 97
     public function getUserId()
98 98
     {
99
-        if (! is_null($this->userId)) {
99
+        if (!is_null($this->userId)) {
100 100
             return $this->userId;
101 101
         }
102 102
 
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
      */
121 121
     public function isUserIdOnline($userId)
122 122
     {
123
-        return ! empty($this->room->getClients(static::USER_PREFIX . $userId));
123
+        return !empty($this->room->getClients(static::USER_PREFIX . $userId));
124 124
     }
125 125
 
126 126
     /**
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
      */
131 131
     protected function checkUser($user)
132 132
     {
133
-        if (! $user instanceOf AuthenticatableContract) {
133
+        if (!$user instanceOf AuthenticatableContract) {
134 134
             throw new InvalidArgumentException('user object must implement ' . AuthenticatableContract::class);
135 135
         }
136 136
     }
Please login to merge, or discard this patch.
src/Concerns/WithApplication.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      */
58 58
     public function getApplication()
59 59
     {
60
-        if (! $this->app instanceof Container) {
60
+        if (!$this->app instanceof Container) {
61 61
             $this->app = $this->loadApplication();
62 62
             $this->bootstrap();
63 63
         }
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
     {
109 109
         $framework = strtolower($framework);
110 110
 
111
-        if (! in_array($framework, ['laravel', 'lumen'])) {
111
+        if (!in_array($framework, ['laravel', 'lumen'])) {
112 112
             throw new FrameworkNotSupportException($framework);
113 113
         }
114 114
 
Please login to merge, or discard this patch.
src/Concerns/InteractsWithSwooleTable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,8 +56,8 @@
 block discarded – undo
56 56
      */
57 57
     protected function bindSwooleTable()
58 58
     {
59
-        if (! $this->app instanceof ConsoleApp) {
60
-            $this->app->singleton(SwooleTable::class, function () {
59
+        if (!$this->app instanceof ConsoleApp) {
60
+            $this->app->singleton(SwooleTable::class, function() {
61 61
                 return $this->currentTable;
62 62
             });
63 63
 
Please login to merge, or discard this patch.
src/Coroutine/Connectors/ConnectorFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     public static function make(string $version): MySqlConnector
40 40
     {
41 41
         $isMatch = static::isFileVersionMatch($version);
42
-        $class = static::copy(static::stub($version), ! $isMatch);
42
+        $class = static::copy(static::stub($version), !$isMatch);
43 43
 
44 44
         return new $class;
45 45
     }
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      */
65 65
     public static function copy(string $stub, bool $rewrite = false): string
66 66
     {
67
-        if (! file_exists(static::CONNECTOR_CLASS_PATH) || $rewrite) {
67
+        if (!file_exists(static::CONNECTOR_CLASS_PATH) || $rewrite) {
68 68
             copy($stub, static::CONNECTOR_CLASS_PATH);
69 69
         }
70 70
 
Please login to merge, or discard this patch.
src/Coroutine/PDOStatement.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 
55 55
     public function bindParam($parameter, &$variable, $type = null, $maxlen = null, $driverdata = null)
56 56
     {
57
-        if (! is_string($parameter) && ! is_int($parameter)) {
57
+        if (!is_string($parameter) && !is_int($parameter)) {
58 58
             return false;
59 59
         }
60 60
 
@@ -66,12 +66,12 @@  discard block
 block discarded – undo
66 66
 
67 67
     public function bindValue($parameter, $variable, $type = null)
68 68
     {
69
-        if (! is_string($parameter) && ! is_int($parameter)) {
69
+        if (!is_string($parameter) && !is_int($parameter)) {
70 70
             return false;
71 71
         }
72 72
 
73 73
         if (is_object($variable)) {
74
-            if (! method_exists($variable, '__toString')) {
74
+            if (!method_exists($variable, '__toString')) {
75 75
                 return false;
76 76
             } else {
77 77
                 $variable = (string) $variable;
@@ -92,14 +92,14 @@  discard block
 block discarded – undo
92 92
 
93 93
     public function execute($inputParameters = null)
94 94
     {
95
-        if (! empty($inputParameters)) {
95
+        if (!empty($inputParameters)) {
96 96
             foreach ($inputParameters as $key => $value) {
97 97
                 $this->bindParam($key, $value);
98 98
             }
99 99
         }
100 100
 
101 101
         $inputParameters = [];
102
-        if (! empty($this->statement->bindKeyMap)) {
102
+        if (!empty($this->statement->bindKeyMap)) {
103 103
             foreach ($this->statement->bindKeyMap as $nameKey => $numKey) {
104 104
                 if (isset($this->bindMap[$nameKey])) {
105 105
                     $inputParameters[$numKey] = $this->bindMap[$nameKey];
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
         $ctorArgs = null
157 157
     )
158 158
     {
159
-        if (! is_array($rawData)) {
159
+        if (!is_array($rawData)) {
160 160
             return false;
161 161
         }
162 162
         if (empty($rawData)) {
Please login to merge, or discard this patch.