Passed
Push — master ( f9c7db...6aac9c )
by William
14:46 queued 11:57
created
src/Tools/TestGenerator.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
         // The code below extracts only the relevant information.
84 84
 
85 85
         // Extracting lexer's errors.
86
-        if (! empty($lexer->errors)) {
86
+        if (!empty($lexer->errors)) {
87 87
             /** @var LexerException $err */
88 88
             foreach ($lexer->errors as $err) {
89 89
                 $lexerErrors[] = [
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
         }
99 99
 
100 100
         // Extracting parser's errors.
101
-        if (! empty($parser->errors)) {
101
+        if (!empty($parser->errors)) {
102 102
             /** @var ParserException $err */
103 103
             foreach ($parser->errors as $err) {
104 104
                 $parserErrors[] = [
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
     public static function build($type, $input, $output, $debug = null, $ansi = false)
139 139
     {
140 140
         // Support query types: `lexer` / `parser`.
141
-        if (! in_array($type, ['lexer', 'parser'])) {
141
+        if (!in_array($type, ['lexer', 'parser'])) {
142 142
             throw new Exception('Unknown test type (expected `lexer` or `parser`).');
143 143
         }
144 144
 
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
         );
184 184
 
185 185
         // Remove the project path from .out file, it changes for each dev
186
-        $projectFolder = dirname(__DIR__, 2);// Jump to root
186
+        $projectFolder = dirname(__DIR__, 2); // Jump to root
187 187
         $encoded = str_replace($projectFolder, '<project-root>', $encoded);
188 188
 
189 189
         file_put_contents($output, $encoded);
@@ -223,11 +223,11 @@  discard block
 block discarded – undo
223 223
             if (is_dir($inputFile)) {
224 224
                 // Creating required directories to maintain the structure.
225 225
                 // Ignoring errors if the folder structure exists already.
226
-                if (! is_dir($outputFile)) {
226
+                if (!is_dir($outputFile)) {
227 227
                     mkdir($outputFile);
228 228
                 }
229 229
 
230
-                if (($debug !== null) && (! is_dir($debugFile))) {
230
+                if (($debug !== null) && (!is_dir($debugFile))) {
231 231
                     mkdir($debugFile);
232 232
                 }
233 233
 
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
                 }
243 243
 
244 244
                 // Building the test.
245
-                if (! file_exists($outputFile)) {
245
+                if (!file_exists($outputFile)) {
246 246
                     echo sprintf("Building test for %s...\n", $inputFile);
247 247
                     static::build(
248 248
                         str_contains($inputFile, 'lex') ? 'lexer' : 'parser',
Please login to merge, or discard this patch.
src/Translator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
      */
68 68
     public static function gettext($msgid)
69 69
     {
70
-        if (! class_exists(Loader::class, true)) {
70
+        if (!class_exists(Loader::class, true)) {
71 71
             return $msgid;
72 72
         }
73 73
 
Please login to merge, or discard this patch.
src/Tools/CustomJsonSerializer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@
 block discarded – undo
21 21
         'statementEndOptions',
22 22
         'keywordParsers',
23 23
         'statementParsers',
24
-        'keywordNameIndicators',// Not static
25
-        'operatorNameIndicators',// Not static
24
+        'keywordNameIndicators', // Not static
25
+        'operatorNameIndicators', // Not static
26 26
         'defaultDelimiter',
27 27
         'parserMethods',
28 28
         'OPTIONS',
Please login to merge, or discard this patch.
src/Components/JoinKeyword.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
             }
189 189
         }
190 190
 
191
-        if (! empty($expr->type)) {
191
+        if (!empty($expr->type)) {
192 192
             $ret[] = $expr;
193 193
         }
194 194
 
@@ -206,9 +206,9 @@  discard block
 block discarded – undo
206 206
         $ret = [];
207 207
         foreach ($component as $c) {
208 208
             $ret[] = array_search($c->type, static::$joins) . ' ' . $c->expr
209
-                . (! empty($c->on)
209
+                . (!empty($c->on)
210 210
                     ? ' ON ' . Condition::build($c->on) : '')
211
-                . (! empty($c->using)
211
+                . (!empty($c->using)
212 212
                     ? ' USING ' . ArrayObj::build($c->using) : '');
213 213
         }
214 214
 
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.
tests/Lexer/ContextTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      *
31 31
      * @dataProvider contextLoadingProvider
32 32
      */
33
-    public function testLoadClosest(string $context, string|null $expected): void
33
+    public function testLoadClosest(string $context, string | null $expected): void
34 34
     {
35 35
         $this->assertEquals($expected, Context::loadClosest($context));
36 36
         if ($expected !== null) {
Please login to merge, or discard this patch.
tests/Misc/UtfStringTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
      *
87 87
      * @dataProvider utf8StringsProvider
88 88
      */
89
-    public function testAccess(string $text, string|null $pos10, string|null $pos20): void
89
+    public function testAccess(string $text, string | null $pos10, string | null $pos20): void
90 90
     {
91 91
         $str = new UtfString($text);
92 92
         $this->assertEquals($pos10, $str->offsetGet(10));
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.