Passed
Pull Request — master (#505)
by
unknown
12:13 queued 09:20
created
src/Token.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
         switch ($this->type) {
223 223
             case self::TYPE_KEYWORD:
224 224
                 $this->keyword = strtoupper($this->token);
225
-                if (! ($this->flags & self::FLAG_KEYWORD_RESERVED)) {
225
+                if (!($this->flags & self::FLAG_KEYWORD_RESERVED)) {
226 226
                     // Unreserved keywords should stay the way they are because they
227 227
                     // might represent field names.
228 228
                     return $this->token;
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
                     }
248 248
                 } elseif (($this->flags & self::FLAG_NUMBER_APPROXIMATE) || ($this->flags & self::FLAG_NUMBER_FLOAT)) {
249 249
                     $ret = (float) $ret;
250
-                } elseif (! ($this->flags & self::FLAG_NUMBER_BINARY)) {
250
+                } elseif (!($this->flags & self::FLAG_NUMBER_BINARY)) {
251 251
                     $ret = (int) $ret;
252 252
                 }
253 253
 
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
                     // in PHP 5.3- the `null` parameter isn't handled correctly.
283 283
                     $str = mb_substr(
284 284
                         $str,
285
-                        ! empty($str[1]) && ($str[1] === '@') ? 2 : 1,
285
+                        !empty($str[1]) && ($str[1] === '@') ? 2 : 1,
286 286
                         mb_strlen($str),
287 287
                         'UTF-8'
288 288
                     );
Please login to merge, or discard this patch.
src/Components/OrderKeyword.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
                 ) {
95 95
                     $expr->type = $token->keyword;
96 96
                 } elseif (($token->type === Token::TYPE_OPERATOR) && ($token->value === ',')) {
97
-                    if (! empty($expr->expr)) {
97
+                    if (!empty($expr->expr)) {
98 98
                         $ret[] = $expr;
99 99
                     }
100 100
 
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
         }
108 108
 
109 109
         // Last iteration was not processed.
110
-        if (! empty($expr->expr)) {
110
+        if (!empty($expr->expr)) {
111 111
             $ret[] = $expr;
112 112
         }
113 113
 
Please login to merge, or discard this patch.
src/Statements/WithStatement.php 2 patches
Indentation   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@  discard block
 block discarded – undo
22 22
 
23 23
 /**
24 24
  * `WITH` statement.
25
-
26 25
  *  WITH [RECURSIVE] query_name [ (column_name [,...]) ] AS (SELECT ...) [, ...]
27 26
  */
28 27
 final class WithStatement extends Statement
@@ -263,9 +262,9 @@  discard block
 block discarded – undo
263 262
 
264 263
         // 5 is the only valid end state
265 264
         if ($state !== 5) {
266
-             /**
267
-             * Token parsed at this moment.
268
-             */
265
+                /**
266
+                 * Token parsed at this moment.
267
+                 */
269 268
             $token = $list->tokens[$list->idx];
270 269
 
271 270
             $parser->error('Unexpected end of the WITH CTE.', $token);
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
                     break;
134 134
                 }
135 135
             } elseif ($state === 2) {
136
-                if (! ($token->type === Token::TYPE_KEYWORD && $token->keyword === 'AS')) {
136
+                if (!($token->type === Token::TYPE_KEYWORD && $token->keyword === 'AS')) {
137 137
                     $parser->error('AS keyword was expected.', $token);
138 138
                     break;
139 139
                 }
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
                 $list->idx++; // Ignore the current token
146 146
                 $nextKeyword = $list->getNext();
147 147
 
148
-                if (! ($token->value === '(' && ($nextKeyword && $nextKeyword->value === 'SELECT'))) {
148
+                if (!($token->value === '(' && ($nextKeyword && $nextKeyword->value === 'SELECT'))) {
149 149
                     $parser->error('Subquery of the CTE was expected.', $token);
150 150
                     $list->idx = $idxBeforeGetNext;
151 151
                     break;
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
     /**
296 296
      * Get tokens within the WITH expression to use them in another parser
297 297
      */
298
-    private function getSubTokenList(TokensList $list): ParserException|TokensList
298
+    private function getSubTokenList(TokensList $list): ParserException | TokensList
299 299
     {
300 300
         $idx = $list->idx;
301 301
         $token = $list->tokens[$list->idx];
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
             }
312 312
 
313 313
             ++$list->idx;
314
-            if (! isset($list->tokens[$list->idx])) {
314
+            if (!isset($list->tokens[$list->idx])) {
315 315
                 break;
316 316
             }
317 317
 
Please login to merge, or discard this patch.
tests/Tools/ContextGeneratorTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
         $this->assertEquals([
43 43
             Token::TYPE_KEYWORD | Token::FLAG_KEYWORD_RESERVED => [
44 44
                 8 => ['RESERVED'],
45
-                9 => ['RESERVED2','RESERVED3','RESERVED4','RESERVED5'],
45
+                9 => ['RESERVED2', 'RESERVED3', 'RESERVED4', 'RESERVED5'],
46 46
             ],
47 47
             Token::TYPE_KEYWORD | Token::FLAG_KEYWORD_FUNCTION => [8 => ['FUNCTION']],
48 48
             Token::TYPE_KEYWORD | Token::FLAG_KEYWORD_DATA_TYPE => [8 => ['DATATYPE']],
Please login to merge, or discard this patch.
tests/benchmarks/UtfStringBench.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     {
27 27
         $str1 = new UtfString($this->testContents);
28 28
         for ($i = 0; $i < $str1->length(); $i++) {
29
-            $str1[$i];// Make offset offsetGet work
29
+            $str1[$i]; // Make offset offsetGet work
30 30
         }
31 31
     }
32 32
 
Please login to merge, or discard this patch.
tests/Parser/ParserLongExportsTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
         foreach ($parser->statements as $statement) {
65 65
             if ($statement instanceof TransactionStatement) {
66 66
                 foreach ($statement->statements as $transactionStatement) {
67
-                    if (! $transactionStatement instanceof SetStatement) {
67
+                    if (!$transactionStatement instanceof SetStatement) {
68 68
                         continue;
69 69
                     }
70 70
 
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
                 continue;
75 75
             }
76 76
 
77
-            if (! $statement instanceof SetStatement) {
77
+            if (!$statement instanceof SetStatement) {
78 78
                 continue;
79 79
             }
80 80
 
Please login to merge, or discard this patch.
src/Components/FunctionCall.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
                 if ($token->type === Token::TYPE_OPERATOR && $token->value === '(') {
90 90
                     --$list->idx; // ArrayObj needs to start with `(`
91 91
                     $state = 1;
92
-                    continue;// do not add this token to the name
92
+                    continue; // do not add this token to the name
93 93
                 }
94 94
 
95 95
                 $ret->name .= $token->value;
Please login to merge, or discard this patch.
src/Utils/Tokens.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
         }
48 48
 
49 49
         // Flags.
50
-        return ! isset($pattern['flags'])
51
-            || (! (($pattern['flags'] & $token->flags) === 0));
50
+        return !isset($pattern['flags'])
51
+            || (!(($pattern['flags'] & $token->flags) === 0));
52 52
     }
53 53
 
54 54
     /**
@@ -56,17 +56,17 @@  discard block
 block discarded – undo
56 56
      * @param Token[] $replace
57 57
      */
58 58
     public static function replaceTokens(
59
-        TokensList|string|UtfString $list,
59
+        TokensList | string | UtfString $list,
60 60
         array $find,
61 61
         array $replace
62
-    ): TokensList|string {
62
+    ): TokensList | string {
63 63
         /**
64 64
          * Whether the first parameter is a list.
65 65
          */
66 66
         $isList = $list instanceof TokensList;
67 67
 
68 68
         // Parsing the tokens.
69
-        if (! $isList) {
69
+        if (!$isList) {
70 70
             $list = Lexer::getTokens($list);
71 71
         }
72 72
 
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
                     ++$j;
125 125
                 }
126 126
 
127
-                if (! static::match($list->tokens[$j], $find[$k])) {
127
+                if (!static::match($list->tokens[$j], $find[$k])) {
128 128
                     // This token does not match the pattern.
129 129
                     break;
130 130
                 }
Please login to merge, or discard this patch.
src/Statement.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
      * @param Parser|null     $parser the instance that requests parsing
103 103
      * @param TokensList|null $list   the list of tokens to be parsed
104 104
      */
105
-    public function __construct(Parser|null $parser = null, TokensList|null $list = null)
105
+    public function __construct(Parser | null $parser = null, TokensList | null $list = null)
106 106
     {
107 107
         if (($parser === null) || ($list === null)) {
108 108
             return;
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
 
182 182
             // Checking if this field was already built.
183 183
             if ($type & 1) {
184
-                if (! empty($built[$field])) {
184
+                if (!empty($built[$field])) {
185 185
                     continue;
186 186
                 }
187 187
 
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
             }
195 195
 
196 196
             // Checking if the result of the builder should be added.
197
-            if (! ($type & 1)) {
197
+            if (!($type & 1)) {
198 198
                 continue;
199 199
             }
200 200
 
@@ -318,8 +318,8 @@  discard block
 block discarded – undo
318 318
             $options = [];
319 319
 
320 320
             // Looking for duplicated clauses.
321
-            if (! empty(Parser::$keywordParsers[$token->value]) || ! empty(Parser::$statementParsers[$token->value])) {
322
-                if (! empty($parsedClauses[$token->value])) {
321
+            if (!empty(Parser::$keywordParsers[$token->value]) || !empty(Parser::$statementParsers[$token->value])) {
322
+                if (!empty($parsedClauses[$token->value])) {
323 323
                     $parser->error('This type of clause was previously parsed.', $token);
324 324
                     break;
325 325
                 }
@@ -332,18 +332,18 @@  discard block
 block discarded – undo
332 332
             // but it might be the beginning of a statement of truncate,
333 333
             // so let the value use the keyword field for truncate type.
334 334
             $tokenValue = in_array($token->keyword, ['TRUNCATE']) ? $token->keyword : $token->value;
335
-            if (! empty(Parser::$keywordParsers[$tokenValue]) && $list->idx < $list->count) {
335
+            if (!empty(Parser::$keywordParsers[$tokenValue]) && $list->idx < $list->count) {
336 336
                 $class = Parser::$keywordParsers[$tokenValue]['class'];
337 337
                 $field = Parser::$keywordParsers[$tokenValue]['field'];
338
-                if (! empty(Parser::$keywordParsers[$tokenValue]['options'])) {
338
+                if (!empty(Parser::$keywordParsers[$tokenValue]['options'])) {
339 339
                     $options = Parser::$keywordParsers[$tokenValue]['options'];
340 340
                 }
341 341
             }
342 342
 
343 343
             // Checking if this is the beginning of the statement.
344
-            if (! empty(Parser::$statementParsers[$token->keyword])) {
344
+            if (!empty(Parser::$statementParsers[$token->keyword])) {
345 345
                 if (
346
-                    ! empty(static::$clauses) // Undefined for some statements.
346
+                    !empty(static::$clauses) // Undefined for some statements.
347 347
                     && empty(static::$clauses[$token->value])
348 348
                 ) {
349 349
                     // Some keywords (e.g. `SET`) may be the beginning of a
@@ -358,7 +358,7 @@  discard block
 block discarded – undo
358 358
                     break;
359 359
                 }
360 360
 
361
-                if (! $parsedOptions) {
361
+                if (!$parsedOptions) {
362 362
                     if (empty(static::$statementOptions[$token->value])) {
363 363
                         // Skipping keyword because if it is not a option.
364 364
                         ++$list->idx;
@@ -530,7 +530,7 @@  discard block
 block discarded – undo
530 530
                 if ($minJoin === 0 && stripos($clauseType, 'JOIN')) {
531 531
                     // First JOIN clause is detected
532 532
                     $minJoin = $maxJoin = $clauseStartIdx;
533
-                } elseif ($minJoin !== 0 && ! stripos($clauseType, 'JOIN')) {
533
+                } elseif ($minJoin !== 0 && !stripos($clauseType, 'JOIN')) {
534 534
                     // After a previous JOIN clause, a non-JOIN clause has been detected
535 535
                     $maxJoin = $lastIdx;
536 536
                 } elseif ($maxJoin < $clauseStartIdx && stripos($clauseType, 'JOIN')) {
Please login to merge, or discard this patch.