Passed
Push — master ( b73750...ab0866 )
by Maurício
13:49 queued 13s
created
src/Components/RenameOperation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@
 block discarded – undo
156 156
         }
157 157
 
158 158
         // Last iteration was not saved.
159
-        if (! empty($expr->old)) {
159
+        if (!empty($expr->old)) {
160 160
             $ret[] = $expr;
161 161
         }
162 162
 
Please login to merge, or discard this patch.
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/Components/PartitionDefinition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -249,7 +249,7 @@
 block discarded – undo
249 249
         return trim(
250 250
             'PARTITION ' . $component->name
251 251
             . (empty($component->type) ? '' : ' VALUES ' . $component->type . ' ' . $component->expr . ' ')
252
-            . (! empty($component->options) && ! empty($component->type) ? '' : ' ')
252
+            . (!empty($component->options) && !empty($component->type) ? '' : ' ')
253 253
             . $component->options . $subpartitions
254 254
         );
255 255
     }
Please login to merge, or discard this patch.
src/Tools/ContextGenerator.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
             }
173 173
 
174 174
             $value = strtoupper($value);
175
-            if (! isset($types[$value])) {
175
+            if (!isset($types[$value])) {
176 176
                 $types[$value] = $type;
177 177
             } else {
178 178
                 $types[$value] |= $type;
@@ -182,11 +182,11 @@  discard block
 block discarded – undo
182 182
         $ret = [];
183 183
         foreach ($types as $word => $type) {
184 184
             $len = strlen($word);
185
-            if (! isset($ret[$type])) {
185
+            if (!isset($ret[$type])) {
186 186
                 $ret[$type] = [];
187 187
             }
188 188
 
189
-            if (! isset($ret[$type][$len])) {
189
+            if (!isset($ret[$type][$len])) {
190 190
                 $ret[$type][$len] = [];
191 191
             }
192 192
 
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.
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.