Completed
Push — master ( 0e2450...c4efad )
by Maurício
42s queued 37s
created
src/Utils/StatementFlags.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@
 block discarded – undo
134 134
     /**
135 135
      * The type of the statement (which is usually the first keyword).
136 136
      */
137
-    public StatementType|null $queryType = null;
137
+    public StatementType | null $queryType = null;
138 138
 
139 139
     /**
140 140
      * Whether a page reload is required.
Please login to merge, or discard this patch.
src/Utils/StatementInfo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      */
20 20
     public function __construct(
21 21
         public readonly Parser $parser,
22
-        public readonly Statement|null $statement,
22
+        public readonly Statement | null $statement,
23 23
         public readonly StatementFlags $flags,
24 24
         public readonly array $selectTables,
25 25
         public readonly array $selectExpressions,
Please login to merge, or discard this patch.
src/Utils/Query.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -78,23 +78,23 @@  discard block
 block discarded – undo
78 78
             $flags->distinct = true;
79 79
         }
80 80
 
81
-        if (! empty($statement->group) || ! empty($statement->having)) {
81
+        if (!empty($statement->group) || !empty($statement->having)) {
82 82
             $flags->isGroup = true;
83 83
         }
84 84
 
85
-        if (! empty($statement->into) && ($statement->into->type === 'OUTFILE')) {
85
+        if (!empty($statement->into) && ($statement->into->type === 'OUTFILE')) {
86 86
             $flags->isExport = true;
87 87
         }
88 88
 
89 89
         $expressions = $statement->expr;
90
-        if (! empty($statement->join)) {
90
+        if (!empty($statement->join)) {
91 91
             foreach ($statement->join as $join) {
92 92
                 $expressions[] = $join->expr;
93 93
             }
94 94
         }
95 95
 
96 96
         foreach ($expressions as $expr) {
97
-            if (! empty($expr->function)) {
97
+            if (!empty($expr->function)) {
98 98
                 if ($expr->function === 'COUNT') {
99 99
                     $flags->isCount = true;
100 100
                 } elseif (in_array($expr->function, static::$functions)) {
@@ -109,15 +109,15 @@  discard block
 block discarded – undo
109 109
             $flags->isSubQuery = true;
110 110
         }
111 111
 
112
-        if (! empty($statement->procedure) && ($statement->procedure->name === 'ANALYSE')) {
112
+        if (!empty($statement->procedure) && ($statement->procedure->name === 'ANALYSE')) {
113 113
             $flags->isAnalyse = true;
114 114
         }
115 115
 
116
-        if (! empty($statement->group)) {
116
+        if (!empty($statement->group)) {
117 117
             $flags->group = true;
118 118
         }
119 119
 
120
-        if (! empty($statement->having)) {
120
+        if (!empty($statement->having)) {
121 121
             $flags->having = true;
122 122
         }
123 123
 
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
      *
138 138
      * @param Statement|null $statement the statement to be processed
139 139
      */
140
-    public static function getFlags(Statement|null $statement): StatementFlags
140
+    public static function getFlags(Statement | null $statement): StatementFlags
141 141
     {
142 142
         $flags = new StatementFlags();
143 143
 
@@ -213,11 +213,11 @@  discard block
 block discarded – undo
213 213
             || ($statement instanceof UpdateStatement)
214 214
             || ($statement instanceof DeleteStatement)
215 215
         ) {
216
-            if (! empty($statement->limit)) {
216
+            if (!empty($statement->limit)) {
217 217
                 $flags->limit = true;
218 218
             }
219 219
 
220
-            if (! empty($statement->order)) {
220
+            if (!empty($statement->order)) {
221 221
                 $flags->order = true;
222 222
             }
223 223
         }
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
             // Finding tables' aliases and their associated real names.
248 248
             $tableAliases = [];
249 249
             foreach ($statement->from as $expr) {
250
-                if (! isset($expr->table, $expr->alias) || ($expr->table === '') || ($expr->alias === '')) {
250
+                if (!isset($expr->table, $expr->alias) || ($expr->table === '') || ($expr->alias === '')) {
251 251
                     continue;
252 252
                 }
253 253
 
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
                         ];
273 273
                     }
274 274
 
275
-                    if (! in_array($arr, $selectTables)) {
275
+                    if (!in_array($arr, $selectTables)) {
276 276
                         $selectTables[] = $arr;
277 277
                     }
278 278
                 } else {
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
             // extracted from the FROM clause.
286 286
             if ($selectTables === []) {
287 287
                 foreach ($statement->from as $expr) {
288
-                    if (! isset($expr->table) || ($expr->table === '')) {
288
+                    if (!isset($expr->table) || ($expr->table === '')) {
289 289
                         continue;
290 290
                     }
291 291
 
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
         } elseif (($statement instanceof AlterStatement) || ($statement instanceof TruncateStatement)) {
327 327
             $expressions = [$statement->table];
328 328
         } elseif ($statement instanceof DropStatement) {
329
-            if (! $statement->options->has('TABLE')) {
329
+            if (!$statement->options->has('TABLE')) {
330 330
                 // No tables are dropped.
331 331
                 return [];
332 332
             }
@@ -371,7 +371,7 @@  discard block
 block discarded – undo
371 371
         Statement $statement,
372 372
         TokensList $list,
373 373
         string $clause,
374
-        int|string $type = 0,
374
+        int | string $type = 0,
375 375
         bool $skipFirst = true,
376 376
     ): string {
377 377
         /**
@@ -495,7 +495,7 @@  discard block
 block discarded – undo
495 495
         Statement $statement,
496 496
         TokensList $list,
497 497
         string $old,
498
-        string|null $new = null,
498
+        string | null $new = null,
499 499
         bool $onlyType = false,
500 500
     ): string {
501 501
         // TODO: Update the tokens list and the statement.
@@ -572,7 +572,7 @@  discard block
 block discarded – undo
572 572
      *                                 the remaining part of the query and the last delimiter
573 573
      * @psalm-return array{string|null, string, string|null}
574 574
      */
575
-    public static function getFirstStatement(string $query, string|null $delimiter = null): array
575
+    public static function getFirstStatement(string $query, string | null $delimiter = null): array
576 576
     {
577 577
         $lexer = new Lexer($query, false, $delimiter);
578 578
         $list = $lexer->list;
@@ -596,7 +596,7 @@  discard block
 block discarded – undo
596 596
 
597 597
             $statement .= $token->token;
598 598
 
599
-            if (($token->type === TokenType::Delimiter) && ! empty($token->token)) {
599
+            if (($token->type === TokenType::Delimiter) && !empty($token->token)) {
600 600
                 $delimiter = $token->token;
601 601
                 $fullStatement = true;
602 602
                 break;
@@ -605,7 +605,7 @@  discard block
 block discarded – undo
605 605
 
606 606
         // No statement was found so we return the entire query as being the
607 607
         // remaining part.
608
-        if (! $fullStatement) {
608
+        if (!$fullStatement) {
609 609
             return [
610 610
                 null,
611 611
                 $query,
Please login to merge, or discard this patch.