@@ -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 | |
@@ -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 | |
@@ -26,7 +26,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 128 | 128 | |
| 129 | 129 | $option = $field->options->has('AS'); |
| 130 | 130 | |
| 131 | - if (! $option) { |
|
| 131 | + if (!$option) { |
|
| 132 | 132 | continue; |
| 133 | 133 | } |
| 134 | 134 | |