@@ -27,15 +27,15 @@ |
||
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 |
@@ -26,11 +26,11 @@ |
||
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 |
@@ -123,7 +123,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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; |
@@ -94,7 +94,7 @@ discard block |
||
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 |
||
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 |
@@ -211,7 +211,7 @@ discard block |
||
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 |
||
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 | } |
@@ -154,7 +154,7 @@ discard block |
||
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 |
||
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 |
||
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 |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | */ |
26 | 26 | public static function getAliases($statement, $database) |
27 | 27 | { |
28 | - if (! ($statement instanceof SelectStatement) || empty($statement->expr) || empty($statement->from)) { |
|
28 | + if (!($statement instanceof SelectStatement) || empty($statement->expr) || empty($statement->from)) { |
|
29 | 29 | return []; |
30 | 30 | } |
31 | 31 | |
@@ -42,28 +42,28 @@ discard block |
||
42 | 42 | $expressions = $statement->from; |
43 | 43 | |
44 | 44 | // Adding expressions from JOIN. |
45 | - if (! empty($statement->join)) { |
|
45 | + if (!empty($statement->join)) { |
|
46 | 46 | foreach ($statement->join as $join) { |
47 | 47 | $expressions[] = $join->expr; |
48 | 48 | } |
49 | 49 | } |
50 | 50 | |
51 | 51 | foreach ($expressions as $expr) { |
52 | - if (! isset($expr->table) || ($expr->table === '')) { |
|
52 | + if (!isset($expr->table) || ($expr->table === '')) { |
|
53 | 53 | continue; |
54 | 54 | } |
55 | 55 | |
56 | 56 | $thisDb = isset($expr->database) && ($expr->database !== '') ? |
57 | 57 | $expr->database : $database; |
58 | 58 | |
59 | - if (! isset($retval[$thisDb])) { |
|
59 | + if (!isset($retval[$thisDb])) { |
|
60 | 60 | $retval[$thisDb] = [ |
61 | 61 | 'alias' => null, |
62 | 62 | 'tables' => [], |
63 | 63 | ]; |
64 | 64 | } |
65 | 65 | |
66 | - if (! isset($retval[$thisDb]['tables'][$expr->table])) { |
|
66 | + if (!isset($retval[$thisDb]['tables'][$expr->table])) { |
|
67 | 67 | $retval[$thisDb]['tables'][$expr->table] = [ |
68 | 68 | 'alias' => isset($expr->alias) && ($expr->alias !== '') ? |
69 | 69 | $expr->alias : null, |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | ]; |
72 | 72 | } |
73 | 73 | |
74 | - if (! isset($tables[$thisDb])) { |
|
74 | + if (!isset($tables[$thisDb])) { |
|
75 | 75 | $tables[$thisDb] = []; |
76 | 76 | } |
77 | 77 | |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | } |
80 | 80 | |
81 | 81 | foreach ($statement->expr as $expr) { |
82 | - if (! isset($expr->column, $expr->alias) || ($expr->column === '') || ($expr->alias === '')) { |
|
82 | + if (!isset($expr->column, $expr->alias) || ($expr->column === '') || ($expr->alias === '')) { |
|
83 | 83 | continue; |
84 | 84 | } |
85 | 85 |
@@ -222,7 +222,7 @@ discard block |
||
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 |
||
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 |
||
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 | ); |
@@ -94,7 +94,7 @@ discard block |
||
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 |
||
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 |