Passed
Push — master ( 3b7191...72699f )
by Maurício
03:33 queued 14s
created
src/Utils/Routine.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
117 117
             'opts' => [],
118 118
         ];
119 119
 
120
-        if (! empty($statement->parameters)) {
120
+        if (!empty($statement->parameters)) {
121 121
             $idx = 0;
122 122
             foreach ($statement->parameters as $param) {
123 123
                 $retval['dir'][$idx] = $param->inOut;
Please login to merge, or discard this patch.
src/Statements/LockStatement.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
             }
100 100
 
101 101
             if ($state === 1) {
102
-                if (! $this->isLock) {
102
+                if (!$this->isLock) {
103 103
                     // UNLOCK statement should not have any more tokens
104 104
                     $parser->error('Unexpected token.', $token);
105 105
                     break;
Please login to merge, or discard this patch.
tools/TestGenerator.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,15 +27,15 @@
 block discarded – undo
27 27
 $debug = empty($argv[3]) ? null : rtrim($argv[3], '/');
28 28
 
29 29
 // Checking if all directories are valid.
30
-if (! is_dir($input)) {
30
+if (!is_dir($input)) {
31 31
     throw new Exception('The input directory does not exist.');
32 32
 }
33 33
 
34
-if (! is_dir($output)) {
34
+if (!is_dir($output)) {
35 35
     throw new Exception('The output directory does not exist.');
36 36
 }
37 37
 
38
-if (($debug !== null) && (! is_dir($debug))) {
38
+if (($debug !== null) && (!is_dir($debug))) {
39 39
     throw new Exception('The debug directory does not exist.');
40 40
 }
41 41
 
Please login to merge, or discard this patch.
tools/ContextGenerator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,11 +26,11 @@
 block discarded – undo
26 26
 $output = rtrim($argv[2], '/');
27 27
 
28 28
 // Checking if all directories are valid.
29
-if (! is_dir($input)) {
29
+if (!is_dir($input)) {
30 30
     throw new Exception('The input directory does not exist.');
31 31
 }
32 32
 
33
-if (! is_dir($output)) {
33
+if (!is_dir($output)) {
34 34
     throw new Exception('The output directory does not exist.');
35 35
 }
36 36
 
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/Statements/LoadStatement.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -149,14 +149,14 @@
 block discarded – undo
149 149
      *
150 150
      * @var Expression[]|null
151 151
      */
152
-    public array|null $columnNamesOrUserVariables = null;
152
+    public array | null $columnNamesOrUserVariables = null;
153 153
 
154 154
     /**
155 155
      * SET clause's updated values(optional).
156 156
      *
157 157
      * @var SetOperation[]|null
158 158
      */
159
-    public array|null $set = null;
159
+    public array | null $set = null;
160 160
 
161 161
     /**
162 162
      * Ignore 'number' LINES/ROWS.
Please login to merge, or discard this patch.
src/Statements/DeleteStatement.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -106,28 +106,28 @@  discard block
 block discarded – undo
106 106
      *
107 107
      * @var Expression[]|null
108 108
      */
109
-    public array|null $from = null;
109
+    public array | null $from = null;
110 110
 
111 111
     /**
112 112
      * Joins.
113 113
      *
114 114
      * @var JoinKeyword[]|null
115 115
      */
116
-    public array|null $join = null;
116
+    public array | null $join = null;
117 117
 
118 118
     /**
119 119
      * Tables used as sources for this statement.
120 120
      *
121 121
      * @var Expression[]|null
122 122
      */
123
-    public array|null $using = null;
123
+    public array | null $using = null;
124 124
 
125 125
     /**
126 126
      * Columns used in this statement.
127 127
      *
128 128
      * @var Expression[]|null
129 129
      */
130
-    public array|null $columns = null;
130
+    public array | null $columns = null;
131 131
 
132 132
     /**
133 133
      * Partitions used as source for this statement.
@@ -141,14 +141,14 @@  discard block
 block discarded – undo
141 141
      *
142 142
      * @var Condition[]|null
143 143
      */
144
-    public array|null $where = null;
144
+    public array | null $where = null;
145 145
 
146 146
     /**
147 147
      * Specifies the order of the rows in the result set.
148 148
      *
149 149
      * @var OrderKeyword[]|null
150 150
      */
151
-    public array|null $order = null;
151
+    public array | null $order = null;
152 152
 
153 153
     /**
154 154
      * Conditions used for limiting the size of the result set.
Please login to merge, or discard this patch.
src/Statements/SelectStatement.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -391,28 +391,28 @@  discard block
 block discarded – undo
391 391
         $expressions = $this->from;
392 392
 
393 393
         // Adding expressions from JOIN.
394
-        if (! empty($this->join)) {
394
+        if (!empty($this->join)) {
395 395
             foreach ($this->join as $join) {
396 396
                 $expressions[] = $join->expr;
397 397
             }
398 398
         }
399 399
 
400 400
         foreach ($expressions as $expr) {
401
-            if (! isset($expr->table) || ($expr->table === '')) {
401
+            if (!isset($expr->table) || ($expr->table === '')) {
402 402
                 continue;
403 403
             }
404 404
 
405 405
             $thisDb = isset($expr->database) && ($expr->database !== '') ?
406 406
                 $expr->database : $database;
407 407
 
408
-            if (! isset($retval[$thisDb])) {
408
+            if (!isset($retval[$thisDb])) {
409 409
                 $retval[$thisDb] = [
410 410
                     'alias' => null,
411 411
                     'tables' => [],
412 412
                 ];
413 413
             }
414 414
 
415
-            if (! isset($retval[$thisDb]['tables'][$expr->table])) {
415
+            if (!isset($retval[$thisDb]['tables'][$expr->table])) {
416 416
                 $retval[$thisDb]['tables'][$expr->table] = [
417 417
                     'alias' => isset($expr->alias) && ($expr->alias !== '') ?
418 418
                         $expr->alias : null,
@@ -420,7 +420,7 @@  discard block
 block discarded – undo
420 420
                 ];
421 421
             }
422 422
 
423
-            if (! isset($tables[$thisDb])) {
423
+            if (!isset($tables[$thisDb])) {
424 424
                 $tables[$thisDb] = [];
425 425
             }
426 426
 
@@ -428,7 +428,7 @@  discard block
 block discarded – undo
428 428
         }
429 429
 
430 430
         foreach ($this->expr as $expr) {
431
-            if (! isset($expr->column, $expr->alias) || ($expr->column === '') || ($expr->alias === '')) {
431
+            if (!isset($expr->column, $expr->alias) || ($expr->column === '') || ($expr->alias === '')) {
432 432
                 continue;
433 433
             }
434 434
 
Please login to merge, or discard this patch.