Passed
Push — master ( c3013d...a027c3 )
by William
02:54
created
src/Components/OptionsArray.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 
124 124
             if ($lastOption === null) {
125 125
                 $upper = strtoupper($token->token);
126
-                if (! isset($options[$upper])) {
126
+                if (!isset($options[$upper])) {
127 127
                     // There is no option to be processed.
128 128
                     break;
129 129
                 }
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
             }
161 161
 
162 162
             if ($state === 0) {
163
-                if (! is_array($lastOption)) {
163
+                if (!is_array($lastOption)) {
164 164
                     // This is a just keyword option without any value.
165 165
                     // This is the beginning and the end of it.
166 166
                     $ret->options[$lastOptionId] = $token->value;
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
                 $ret->options[$lastOptionId]['expr'] .= $token->token;
235 235
 
236 236
                 if (
237
-                    ! (($token->token === '(') && ($brackets === 1)
237
+                    !(($token->token === '(') && ($brackets === 1)
238 238
                     || (($token->token === ')') && ($brackets === 0)))
239 239
                 ) {
240 240
                     // First pair of brackets is being skipped.
@@ -292,12 +292,12 @@  discard block
 block discarded – undo
292 292
 
293 293
         $options = [];
294 294
         foreach ($component->options as $option) {
295
-            if (! is_array($option)) {
295
+            if (!is_array($option)) {
296 296
                 $options[] = $option;
297 297
             } else {
298 298
                 $options[] = $option['name']
299
-                    . (! empty($option['equals']) && $option['equals'] ? '=' : ' ')
300
-                    . (! empty($option['expr']) ? $option['expr'] : $option['value']);
299
+                    . (!empty($option['equals']) && $option['equals'] ? '=' : ' ')
300
+                    . (!empty($option['expr']) ? $option['expr'] : $option['value']);
301 301
             }
302 302
         }
303 303
 
@@ -317,10 +317,10 @@  discard block
 block discarded – undo
317 317
     {
318 318
         foreach ($this->options as $option) {
319 319
             if (is_array($option)) {
320
-                if (! strcasecmp($key, $option['name'])) {
320
+                if (!strcasecmp($key, $option['name'])) {
321 321
                     return $getExpr ? $option['expr'] : $option['value'];
322 322
                 }
323
-            } elseif (! strcasecmp($key, $option)) {
323
+            } elseif (!strcasecmp($key, $option)) {
324 324
                 return true;
325 325
             }
326 326
         }
@@ -339,12 +339,12 @@  discard block
 block discarded – undo
339 339
     {
340 340
         foreach ($this->options as $idx => $option) {
341 341
             if (is_array($option)) {
342
-                if (! strcasecmp($key, $option['name'])) {
342
+                if (!strcasecmp($key, $option['name'])) {
343 343
                     unset($this->options[$idx]);
344 344
 
345 345
                     return true;
346 346
                 }
347
-            } elseif (! strcasecmp($key, $option)) {
347
+            } elseif (!strcasecmp($key, $option)) {
348 348
                 unset($this->options[$idx]);
349 349
 
350 350
                 return true;
Please login to merge, or discard this patch.
src/Components/GroupKeyword.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/Components/CaseExpression.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
 
212 212
                 // Handle optional AS keyword before alias
213 213
                 if ($token->type === Token::TYPE_KEYWORD && $token->keyword === 'AS') {
214
-                    if ($asFound || ! empty($ret->alias)) {
214
+                    if ($asFound || !empty($ret->alias)) {
215 215
                         $parser->error('Potential duplicate alias of CASE expression.', $token);
216 216
                         break;
217 217
                     }
@@ -233,11 +233,11 @@  discard block
 block discarded – undo
233 233
                 if (
234 234
                     $asFound
235 235
                     || $token->type === Token::TYPE_STRING
236
-                    || ($token->type === Token::TYPE_SYMBOL && ! $token->flags & Token::FLAG_SYMBOL_VARIABLE)
236
+                    || ($token->type === Token::TYPE_SYMBOL && !$token->flags & Token::FLAG_SYMBOL_VARIABLE)
237 237
                     || $token->type === Token::TYPE_NONE
238 238
                 ) {
239 239
                     // An alias is expected (the keyword `AS` was previously found).
240
-                    if (! empty($ret->alias)) {
240
+                    if (!empty($ret->alias)) {
241 241
                         $parser->error('An alias was previously found.', $token);
242 242
                         break;
243 243
                     }
Please login to merge, or discard this patch.
src/Components/Condition.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
                 } else {
155 155
                     // The expression ended.
156 156
                     $expr->expr = trim($expr->expr);
157
-                    if (! empty($expr->expr)) {
157
+                    if (!empty($expr->expr)) {
158 158
                         $ret[] = $expr;
159 159
                     }
160 160
 
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
             if (
173 173
                 ($token->type === Token::TYPE_KEYWORD)
174 174
                 && ($token->flags & Token::FLAG_KEYWORD_RESERVED)
175
-                && ! ($token->flags & Token::FLAG_KEYWORD_FUNCTION)
175
+                && !($token->flags & Token::FLAG_KEYWORD_FUNCTION)
176 176
             ) {
177 177
                 if ($token->value === 'BETWEEN') {
178 178
                     $betweenBefore = true;
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
 
216 216
         // Last iteration was not processed.
217 217
         $expr->expr = trim($expr->expr);
218
-        if (! empty($expr->expr)) {
218
+        if (!empty($expr->expr)) {
219 219
             $ret[] = $expr;
220 220
         }
221 221
 
Please login to merge, or discard this patch.
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/Utils/Table.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public static function getForeignKeys($statement)
28 28
     {
29
-        if (empty($statement->fields) || (! is_array($statement->fields)) || (! $statement->options->has('TABLE'))) {
29
+        if (empty($statement->fields) || (!is_array($statement->fields)) || (!$statement->options->has('TABLE'))) {
30 30
             return [];
31 31
         }
32 32
 
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
             $columns = [];
41 41
             foreach ($field->key->columns as $column) {
42
-                if (! isset($column['name'])) {
42
+                if (!isset($column['name'])) {
43 43
                     continue;
44 44
                 }
45 45
 
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
                 'index_list' => $columns,
52 52
             ];
53 53
 
54
-            if (! empty($field->references)) {
54
+            if (!empty($field->references)) {
55 55
                 $tmp['ref_db_name'] = $field->references->table->database;
56 56
                 $tmp['ref_table_name'] = $field->references->table->table;
57 57
                 $tmp['ref_index_list'] = $field->references->columns;
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      */
85 85
     public static function getFields($statement)
86 86
     {
87
-        if (empty($statement->fields) || (! is_array($statement->fields)) || (! $statement->options->has('TABLE'))) {
87
+        if (empty($statement->fields) || (!is_array($statement->fields)) || (!$statement->options->has('TABLE'))) {
88 88
             return [];
89 89
         }
90 90
 
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
                 'timestamp_not_null' => false,
102 102
             ];
103 103
 
104
-            if (! $field->options) {
104
+            if (!$field->options) {
105 105
                 continue;
106 106
             }
107 107
 
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 
129 129
             $option = $field->options->has('AS');
130 130
 
131
-            if (! $option) {
131
+            if (!$option) {
132 132
                 continue;
133 133
             }
134 134
 
Please login to merge, or discard this patch.
src/UtfString.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
         $this->byteIdx = 0;
191 191
         $this->charIdx = 0;
192 192
         $this->byteLen = mb_strlen($str, '8bit');
193
-        if (! mb_check_encoding($str, 'UTF-8')) {
193
+        if (!mb_check_encoding($str, 'UTF-8')) {
194 194
             $this->charLen = 0;
195 195
         } else {
196 196
             $this->charLen = mb_strlen($str, 'UTF-8');
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
         // Use the default ASCII map as queries are mostly ASCII chars
299 299
         // ord($byte) has a performance cost
300 300
 
301
-        if (! isset(static::$asciiMap[$byte])) {
301
+        if (!isset(static::$asciiMap[$byte])) {
302 302
             // Complete the cache with missing items
303 303
             static::$asciiMap[$byte] = ord($byte);
304 304
         }
Please login to merge, or discard this patch.
src/Statements/CreateStatement.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -417,7 +417,7 @@  discard block
 block discarded – undo
417 417
     public function build()
418 418
     {
419 419
         $fields = '';
420
-        if (! empty($this->fields)) {
420
+        if (!empty($this->fields)) {
421 421
             if (is_array($this->fields)) {
422 422
                 $fields = CreateDefinition::build($this->fields) . ' ';
423 423
             } elseif ($this->fields instanceof ArrayObj) {
@@ -449,23 +449,23 @@  discard block
 block discarded – undo
449 449
 
450 450
             $partition = '';
451 451
 
452
-            if (! empty($this->partitionBy)) {
452
+            if (!empty($this->partitionBy)) {
453 453
                 $partition .= "\nPARTITION BY " . $this->partitionBy;
454 454
             }
455 455
 
456
-            if (! empty($this->partitionsNum)) {
456
+            if (!empty($this->partitionsNum)) {
457 457
                 $partition .= "\nPARTITIONS " . $this->partitionsNum;
458 458
             }
459 459
 
460
-            if (! empty($this->subpartitionBy)) {
460
+            if (!empty($this->subpartitionBy)) {
461 461
                 $partition .= "\nSUBPARTITION BY " . $this->subpartitionBy;
462 462
             }
463 463
 
464
-            if (! empty($this->subpartitionsNum)) {
464
+            if (!empty($this->subpartitionsNum)) {
465 465
                 $partition .= "\nSUBPARTITIONS " . $this->subpartitionsNum;
466 466
             }
467 467
 
468
-            if (! empty($this->partitions)) {
468
+            if (!empty($this->partitions)) {
469 469
                 $partition .= "\n" . PartitionDefinition::build($this->partitions);
470 470
             }
471 471
 
@@ -487,7 +487,7 @@  discard block
 block discarded – undo
487 487
                 . OptionsArray::build($this->options) . ' '
488 488
                 . Expression::build($this->name) . ' '
489 489
                 . $fields . ' AS ' . $builtStatement
490
-                . (! empty($this->body) ? TokensList::build($this->body) : '') . ' '
490
+                . (!empty($this->body) ? TokensList::build($this->body) : '') . ' '
491 491
                 . OptionsArray::build($this->entityOptions);
492 492
         } elseif ($this->options->has('TRIGGER')) {
493 493
             return 'CREATE '
@@ -541,7 +541,7 @@  discard block
 block discarded – undo
541 541
             ]
542 542
         );
543 543
 
544
-        if (! isset($this->name) || ($this->name === '')) {
544
+        if (!isset($this->name) || ($this->name === '')) {
545 545
             $parser->error('The name of the entity was expected.', $list->tokens[$list->idx]);
546 546
         } else {
547 547
             ++$list->idx; // Skipping field.
@@ -657,7 +657,7 @@  discard block
 block discarded – undo
657 657
                         $token = $list->getNextOfType(Token::TYPE_NUMBER);
658 658
                         --$list->idx; // `getNextOfType` also advances one position.
659 659
                         $this->subpartitionsNum = $token->value;
660
-                    } elseif (! empty($field)) {
660
+                    } elseif (!empty($field)) {
661 661
                         /*
662 662
                          * Handling the content of `PARTITION BY` and `SUBPARTITION BY`.
663 663
                          */
@@ -686,7 +686,7 @@  discard block
 block discarded – undo
686 686
                             $field = null;
687 687
                         }
688 688
                     } elseif (($token->type === Token::TYPE_OPERATOR) && ($token->value === '(')) {
689
-                        if (! empty($this->partitionBy)) {
689
+                        if (!empty($this->partitionBy)) {
690 690
                             $this->partitions = ArrayObj::parse(
691 691
                                 $parser,
692 692
                                 $list,
Please login to merge, or discard this patch.