@@ -221,7 +221,7 @@ discard block |
||
| 221 | 221 | if ($token[0]==T_WHITESPACE) |
| 222 | 222 | { |
| 223 | 223 | $line2 = $token[2]; |
| 224 | - if (substr_count($token[1], "\n")>1) |
|
| 224 | + if (substr_count($token[1], "\n") > 1) |
|
| 225 | 225 | { |
| 226 | 226 | // Whitespace contains new line: end doc block without constants. |
| 227 | 227 | $step = 4; |
@@ -248,7 +248,7 @@ discard block |
||
| 248 | 248 | { |
| 249 | 249 | if ($token[0]==T_WHITESPACE) |
| 250 | 250 | { |
| 251 | - if (substr_count($token[1], "\n")<=1) |
|
| 251 | + if (substr_count($token[1], "\n") <= 1) |
|
| 252 | 252 | { |
| 253 | 253 | // Ignore whitespace. |
| 254 | 254 | $line3 = $token[2]; |
@@ -430,7 +430,7 @@ discard block |
||
| 430 | 430 | foreach ($this->constants as $constant => $value) |
| 431 | 431 | { |
| 432 | 432 | $width1 = max(mb_strlen($constant), $width1); |
| 433 | - $width2 = max(mb_strlen((string)$value), $width2); |
|
| 433 | + $width2 = max(mb_strlen((string) $value), $width2); |
|
| 434 | 434 | } |
| 435 | 435 | |
| 436 | 436 | $format = sprintf(' const %%-%ds = %%%dd;', $width1, $width2); |
@@ -477,7 +477,7 @@ discard block |
||
| 477 | 477 | foreach ($table as $column) |
| 478 | 478 | { |
| 479 | 479 | $width1 = max(mb_strlen($column['column_name']), $width1); |
| 480 | - $width2 = max(mb_strlen((string)$column['length']), $width2); |
|
| 480 | + $width2 = max(mb_strlen((string) $column['length']), $width2); |
|
| 481 | 481 | } |
| 482 | 482 | |
| 483 | 483 | foreach ($table as $column) |
@@ -486,7 +486,7 @@ discard block |
||
| 486 | 486 | { |
| 487 | 487 | if (isset($column['constant_name'])) |
| 488 | 488 | { |
| 489 | - $format = sprintf("%%s.%%-%ds %%%dd %%s\n", $width1, $width2); |
|
| 489 | + $format = sprintf("%%s.%%-%ds %%%dd %%s\n", $width1, $width2); |
|
| 490 | 490 | $content .= sprintf($format, |
| 491 | 491 | $column['table_name'], |
| 492 | 492 | $column['column_name'], |
@@ -495,7 +495,7 @@ discard block |
||
| 495 | 495 | } |
| 496 | 496 | else |
| 497 | 497 | { |
| 498 | - $format = sprintf("%%s.%%-%ds %%%dd\n", $width1, $width2); |
|
| 498 | + $format = sprintf("%%s.%%-%ds %%%dd\n", $width1, $width2); |
|
| 499 | 499 | $content .= sprintf($format, |
| 500 | 500 | $column['table_name'], |
| 501 | 501 | $column['column_name'], |
@@ -97,7 +97,7 @@ |
||
| 97 | 97 | */ |
| 98 | 98 | protected function composerMessage(): array |
| 99 | 99 | { |
| 100 | - return array_merge($this->splitIntoTwoColumns('MySQL Errno', (string)$this->errno), |
|
| 100 | + return array_merge($this->splitIntoTwoColumns('MySQL Errno', (string) $this->errno), |
|
| 101 | 101 | $this->splitIntoTwoColumns('Error', $this->error), |
| 102 | 102 | $this->splitIntoTwoColumns('Query', $this->query), |
| 103 | 103 | $this->splitIntoTwoColumns('Method', $this->method)); |
@@ -87,7 +87,7 @@ |
||
| 87 | 87 | */ |
| 88 | 88 | protected function composerMessage(): array |
| 89 | 89 | { |
| 90 | - return array_merge($this->splitIntoTwoColumns('MySQL Errno', (string)$this->errno), |
|
| 90 | + return array_merge($this->splitIntoTwoColumns('MySQL Errno', (string) $this->errno), |
|
| 91 | 91 | $this->splitIntoTwoColumns('Error', $this->error), |
| 92 | 92 | $this->splitIntoTwoColumns('Method', $this->method)); |
| 93 | 93 | } |
@@ -234,7 +234,7 @@ |
||
| 234 | 234 | } |
| 235 | 235 | } |
| 236 | 236 | |
| 237 | - if ($blobArgumentIndex>0) |
|
| 237 | + if ($blobArgumentIndex > 0) |
|
| 238 | 238 | { |
| 239 | 239 | $context->codeStore->append(''); |
| 240 | 240 | } |
@@ -364,7 +364,7 @@ |
||
| 364 | 364 | $key1 = $this->findFirstMatchingLine($context, '/^\s*(as|is)\s*$/i'); |
| 365 | 365 | $key2 = $this->findFirstMatchingLine($context, '/^\s*begin\s*$/i'); |
| 366 | 366 | |
| 367 | - if ($key1!==null && $key2!==null && $key1<$key2) |
|
| 367 | + if ($key1!==null && $key2!==null && $key1 < $key2) |
|
| 368 | 368 | { |
| 369 | 369 | $this->syntax = self::PL_SQL_SYNTAX; |
| 370 | 370 | } |
@@ -91,7 +91,7 @@ |
||
| 91 | 91 | if ($this->currentSqlMode!==$this->canonicalSqlModeWithOracle) |
| 92 | 92 | { |
| 93 | 93 | $this->dl->setSqlMode($this->canonicalSqlModeWithOracle); |
| 94 | - $this->currentSqlMode = (string)$this->canonicalSqlModeWithOracle; |
|
| 94 | + $this->currentSqlMode = (string) $this->canonicalSqlModeWithOracle; |
|
| 95 | 95 | } |
| 96 | 96 | } |
| 97 | 97 | |
@@ -98,7 +98,7 @@ |
||
| 98 | 98 | |
| 99 | 99 | case 'decimal': |
| 100 | 100 | $ret = $dataTypeInfo['numeric_precision']; |
| 101 | - if ($dataTypeInfo['numeric_scale']>0) |
|
| 101 | + if ($dataTypeInfo['numeric_scale'] > 0) |
|
| 102 | 102 | { |
| 103 | 103 | $ret += 1; |
| 104 | 104 | } |
@@ -400,7 +400,7 @@ |
||
| 400 | 400 | { |
| 401 | 401 | $sql = 'select @@sql_mode'; |
| 402 | 402 | |
| 403 | - return (string)$this->executeSingleton1($sql); |
|
| 403 | + return (string) $this->executeSingleton1($sql); |
|
| 404 | 404 | } |
| 405 | 405 | |
| 406 | 406 | //-------------------------------------------------------------------------------------------------------------------- |
@@ -207,7 +207,7 @@ |
||
| 207 | 207 | $keys = $this->keyList(); |
| 208 | 208 | if (!empty($keys)) |
| 209 | 209 | { |
| 210 | - if (sizeof($keys)>1 || !isset($keys['PRIMARY'])) |
|
| 210 | + if (sizeof($keys) > 1 || !isset($keys['PRIMARY'])) |
|
| 211 | 211 | { |
| 212 | 212 | $this->codeStore->append(' * ', false); |
| 213 | 213 | $this->codeStore->append(' * Possible keys:', false); |