| @@ -53,7 +53,7 @@ | ||
| 53 | 53 | public function replaceFullTableName($tableName, $force = false) | 
| 54 | 54 |      { | 
| 55 | 55 | $tableName = trim($tableName); | 
| 56 | -        if ((bool)$force === true) { | |
| 56 | +        if ((bool) $force === true) { | |
| 57 | 57 | $result = $this->getFullTableName($tableName); | 
| 58 | 58 |          } elseif (strpos($tableName, '[+prefix+]') !== false) { | 
| 59 | 59 |              $dbase = trim($this->getConfig('database'), '`'); | 
| @@ -13,7 +13,7 @@ | ||
| 13 | 13 | */ | 
| 14 | 14 | public function __construct($message = '', $code = 0, Throwable $previous = null) | 
| 15 | 15 |      { | 
| 16 | - parent::__construct($message, (int)$code, $previous); | |
| 16 | + parent::__construct($message, (int) $code, $previous); | |
| 17 | 17 | |
| 18 | 18 | $this->code = $code; | 
| 19 | 19 | } | 
| @@ -136,7 +136,7 @@ discard block | ||
| 136 | 136 | */ | 
| 137 | 137 | public function setLastQuery($query) | 
| 138 | 138 |      { | 
| 139 | - $this->lastQuery = (string)$query; | |
| 139 | + $this->lastQuery = (string) $query; | |
| 140 | 140 | |
| 141 | 141 | return $query; | 
| 142 | 142 | } | 
| @@ -146,7 +146,7 @@ discard block | ||
| 146 | 146 | */ | 
| 147 | 147 | public function getLastQuery() | 
| 148 | 148 |      { | 
| 149 | - return (string)$this->lastQuery; | |
| 149 | + return (string) $this->lastQuery; | |
| 150 | 150 | } | 
| 151 | 151 | |
| 152 | 152 | /** | 
| @@ -272,14 +272,14 @@ discard block | ||
| 272 | 272 | $out .= '<fieldset style="text-align:left">'; | 
| 273 | 273 | $out .= '<legend>Query ' . $i . ' - ' . sprintf($this->timeFormat, $query['time']) . '</legend>'; | 
| 274 | 274 | $out .= $query['sql'] . '<br><br>'; | 
| 275 | -            if (! empty($query['element'])) { | |
| 275 | +            if (!empty($query['element'])) { | |
| 276 | 276 | $out .= $query['element']['type'] . ' => ' . $query['element']['name'] . '<br>'; | 
| 277 | 277 | } | 
| 278 | -            if (! empty($query['event'])) { | |
| 278 | +            if (!empty($query['event'])) { | |
| 279 | 279 | $out .= 'Current Event => ' . $query['event'] . '<br>'; | 
| 280 | 280 | } | 
| 281 | 281 | $out .= 'Affected Rows => ' . $query['rows'] . '<br>'; | 
| 282 | -            if (! empty($query['path'])) { | |
| 282 | +            if (!empty($query['path'])) { | |
| 283 | 283 | $out .= 'Functions Path => ' . $query['path'] . '<br>'; | 
| 284 | 284 | } | 
| 285 | 285 | /*$out .= 'Functions Path => ' . $query['path']['method'] . '<br>'; | 
| @@ -11,11 +11,11 @@ discard block | ||
| 11 | 11 | protected function convertValue($value) | 
| 12 | 12 |      { | 
| 13 | 13 |          switch (true) { | 
| 14 | - case (\is_numeric($value) && ! \is_float(1 * $value)): | |
| 15 | - $value = (int)$value; | |
| 14 | + case (\is_numeric($value) && !\is_float(1 * $value)): | |
| 15 | + $value = (int) $value; | |
| 16 | 16 | break; | 
| 17 | - case \is_numeric($value) && \is_float(1*$value): | |
| 18 | - $value = (float)$value; | |
| 17 | + case \is_numeric($value) && \is_float(1 * $value): | |
| 18 | + $value = (float) $value; | |
| 19 | 19 | break; | 
| 20 | 20 | default: | 
| 21 | 21 | break; | 
| @@ -33,7 +33,7 @@ discard block | ||
| 33 | 33 | public function convertDate($timestamp, $fieldType = 'DATETIME') | 
| 34 | 34 |      { | 
| 35 | 35 | $date = false; | 
| 36 | -        if (! empty($timestamp) && $timestamp > 0) { | |
| 36 | +        if (!empty($timestamp) && $timestamp > 0) { | |
| 37 | 37 | $format = [ | 
| 38 | 38 | 'DATE' => 'Y-m-d', | 
| 39 | 39 | 'TIME' => 'H:i:s', | 
| @@ -57,7 +57,7 @@ discard block | ||
| 57 | 57 |          if (\is_array($data)) { | 
| 58 | 58 | $tmp = []; | 
| 59 | 59 |              foreach ($data as $alias => $field) { | 
| 60 | - $tmp[] = ($alias !== $field && ! \is_int($alias) && $ignoreAlias === false) ? | |
| 60 | + $tmp[] = ($alias !== $field && !\is_int($alias) && $ignoreAlias === false) ? | |
| 61 | 61 | ($field . ' as `' . $alias . '`') : $field; | 
| 62 | 62 | } | 
| 63 | 63 | |
| @@ -134,7 +134,7 @@ discard block | ||
| 134 | 134 | } | 
| 135 | 135 | } | 
| 136 | 136 | |
| 137 | -        if (! \is_scalar($values)) { | |
| 137 | +        if (!\is_scalar($values)) { | |
| 138 | 138 |              throw (new Exceptions\InvalidFieldException('values')) | 
| 139 | 139 | ->setData($values); | 
| 140 | 140 | } | 
| @@ -178,7 +178,7 @@ discard block | ||
| 178 | 178 |      { | 
| 179 | 179 | $onlyNumbers = true; | 
| 180 | 180 |          foreach ($data as $value) { | 
| 181 | -            if (! \is_numeric($value)) { | |
| 181 | +            if (!\is_numeric($value)) { | |
| 182 | 182 | $onlyNumbers = false; | 
| 183 | 183 | break; | 
| 184 | 184 | } | 
| @@ -222,7 +222,7 @@ discard block | ||
| 222 | 222 | } | 
| 223 | 223 |              $data = implode(' ', $tmp); | 
| 224 | 224 | } | 
| 225 | -        if (! is_scalar($data) || empty($data)) { | |
| 225 | +        if (!is_scalar($data) || empty($data)) { | |
| 226 | 226 | throw new Exceptions\TableNotDefinedException($data); | 
| 227 | 227 | } | 
| 228 | 228 | |
| @@ -245,7 +245,7 @@ discard block | ||
| 245 | 245 | } | 
| 246 | 246 | } | 
| 247 | 247 | $data = trim($data); | 
| 248 | -        if (! empty($data) && stripos($data, 'WHERE') !== 0) { | |
| 248 | +        if (!empty($data) && stripos($data, 'WHERE') !== 0) { | |
| 249 | 249 |              $data = "WHERE {$data}"; | 
| 250 | 250 | } | 
| 251 | 251 | |
| @@ -259,7 +259,7 @@ discard block | ||
| 259 | 259 | protected function prepareOrder($data) | 
| 260 | 260 |      { | 
| 261 | 261 | $data = trim($data); | 
| 262 | -        if (! empty($data) && stripos($data, 'ORDER') !== 0) { | |
| 262 | +        if (!empty($data) && stripos($data, 'ORDER') !== 0) { | |
| 263 | 263 |              $data = "ORDER BY {$data}"; | 
| 264 | 264 | } | 
| 265 | 265 | |
| @@ -273,7 +273,7 @@ discard block | ||
| 273 | 273 | protected function prepareLimit($data) | 
| 274 | 274 |      { | 
| 275 | 275 | $data = trim($data); | 
| 276 | -        if (! empty($data) && stripos($data, 'LIMIT') !== 0) { | |
| 276 | +        if (!empty($data) && stripos($data, 'LIMIT') !== 0) { | |
| 277 | 277 |              $data = "LIMIT {$data}"; | 
| 278 | 278 | } | 
| 279 | 279 | |
| @@ -29,7 +29,7 @@ discard block | ||
| 29 | 29 | */ | 
| 30 | 30 | public function getConnect() | 
| 31 | 31 |      { | 
| 32 | -        if (! $this->isConnected()) { | |
| 32 | +        if (!$this->isConnected()) { | |
| 33 | 33 | return $this->connect(); | 
| 34 | 34 | } | 
| 35 | 35 | |
| @@ -57,7 +57,7 @@ discard block | ||
| 57 | 57 | */ | 
| 58 | 58 | public function getLastErrorNo() | 
| 59 | 59 |      { | 
| 60 | - $out = (string)$this->getConnect()->sqlstate; | |
| 60 | + $out = (string) $this->getConnect()->sqlstate; | |
| 61 | 61 | |
| 62 | 62 |          if ($out === '00000') { | 
| 63 | 63 | $out = ''; | 
| @@ -253,7 +253,7 @@ discard block | ||
| 253 | 253 | /** | 
| 254 | 254 |       * {@inheritDoc} | 
| 255 | 255 | */ | 
| 256 | - public function begin ($flag = 0, $name = null) | |
| 256 | + public function begin($flag = 0, $name = null) | |
| 257 | 257 |      { | 
| 258 | 258 | return $this->getConnect()->begin_transaction($flag, $name); | 
| 259 | 259 | } | 
| @@ -261,7 +261,7 @@ discard block | ||
| 261 | 261 | /** | 
| 262 | 262 |       * {@inheritDoc} | 
| 263 | 263 | */ | 
| 264 | - public function commit ($flag = 0, $name = null) | |
| 264 | + public function commit($flag = 0, $name = null) | |
| 265 | 265 |      { | 
| 266 | 266 | return $this->getConnect()->commit($flag, $name); | 
| 267 | 267 | } | 
| @@ -269,7 +269,7 @@ discard block | ||
| 269 | 269 | /** | 
| 270 | 270 |       * {@inheritDoc} | 
| 271 | 271 | */ | 
| 272 | - public function rollback ($flag = 0, $name = null) | |
| 272 | + public function rollback($flag = 0, $name = null) | |
| 273 | 273 |      { | 
| 274 | 274 | return $this->getConnect()->rollback($flag, $name); | 
| 275 | 275 | } | 
| @@ -114,9 +114,9 @@ discard block | ||
| 114 | 114 | */ | 
| 115 | 115 | public function getConnect() | 
| 116 | 116 |      { | 
| 117 | -        if (! $this->isConnected()) { | |
| 117 | +        if (!$this->isConnected()) { | |
| 118 | 118 | $this->connect(); | 
| 119 | -            if (! $this->conn->getPdo() instanceof PDO) { | |
| 119 | +            if (!$this->conn->getPdo() instanceof PDO) { | |
| 120 | 120 | $this->conn->reconnect(); | 
| 121 | 121 | } | 
| 122 | 122 | } | 
| @@ -157,7 +157,7 @@ discard block | ||
| 157 | 157 | public function connect() | 
| 158 | 158 |      { | 
| 159 | 159 |          try { | 
| 160 | -            if (! $this->hasConnectionName($this->connection)) { | |
| 160 | +            if (!$this->hasConnectionName($this->connection)) { | |
| 161 | 161 | $this->getCapsule()->addConnection([ | 
| 162 | 162 | 'driver' => $this->driver, | 
| 163 | 163 |                      'host'      => $this->getConfig('host'), | 
| @@ -233,7 +233,7 @@ discard block | ||
| 233 | 233 | |
| 234 | 234 | $query = $method . ' ' . $charset; | 
| 235 | 235 | |
| 236 | - return (bool)$this->query($query); | |
| 236 | + return (bool) $this->query($query); | |
| 237 | 237 | } | 
| 238 | 238 | |
| 239 | 239 | /** | 
| @@ -270,7 +270,7 @@ discard block | ||
| 270 | 270 | $result = $this->prepare($sql); | 
| 271 | 271 | $this->execute($result); | 
| 272 | 272 | |
| 273 | -            if ($this->saveAffectedRows($result) === 0 && $this->isResult($result) && ! $this->isSelectQuery($sql)) { | |
| 273 | +            if ($this->saveAffectedRows($result) === 0 && $this->isResult($result) && !$this->isSelectQuery($sql)) { | |
| 274 | 274 | $result = true; | 
| 275 | 275 | } | 
| 276 | 276 | $this->getConnect()->logQuery($sql, [], $this->getElapsedTime($start)); | 
| @@ -385,7 +385,7 @@ discard block | ||
| 385 | 385 | */ | 
| 386 | 386 | public function execute($result) | 
| 387 | 387 |      { | 
| 388 | - return $this->isResult($result) ? $result->execute() : (bool)$result; | |
| 388 | + return $this->isResult($result) ? $result->execute() : (bool) $result; | |
| 389 | 389 | } | 
| 390 | 390 | |
| 391 | 391 | /** | 
| @@ -444,7 +444,7 @@ discard block | ||
| 444 | 444 | /** | 
| 445 | 445 |       * {@inheritDoc} | 
| 446 | 446 | */ | 
| 447 | - public function begin ($flag = 0, $name = null) | |
| 447 | + public function begin($flag = 0, $name = null) | |
| 448 | 448 |      { | 
| 449 | 449 | return $this->getConnect()->getPdo()->beginTransaction(); | 
| 450 | 450 | } | 
| @@ -452,7 +452,7 @@ discard block | ||
| 452 | 452 | /** | 
| 453 | 453 |       * {@inheritDoc} | 
| 454 | 454 | */ | 
| 455 | - public function commit ($flag = 0, $name = null) | |
| 455 | + public function commit($flag = 0, $name = null) | |
| 456 | 456 |      { | 
| 457 | 457 | return $this->getConnect()->getPdo()->commit(); | 
| 458 | 458 | } | 
| @@ -460,7 +460,7 @@ discard block | ||
| 460 | 460 | /** | 
| 461 | 461 |       * {@inheritDoc} | 
| 462 | 462 | */ | 
| 463 | - public function rollback ($flag = 0, $name = null) | |
| 463 | + public function rollback($flag = 0, $name = null) | |
| 464 | 464 |      { | 
| 465 | 465 | return $this->getConnect()->getPdo()->rollback(); | 
| 466 | 466 | } | 
| @@ -29,7 +29,7 @@ discard block | ||
| 29 | 29 | */ | 
| 30 | 30 | public function getLastErrorNo() | 
| 31 | 31 |      { | 
| 32 | - return (string)$this->getDriver()->getLastErrorNo(); | |
| 32 | + return (string) $this->getDriver()->getLastErrorNo(); | |
| 33 | 33 | } | 
| 34 | 34 | |
| 35 | 35 | /** | 
| @@ -263,7 +263,7 @@ discard block | ||
| 263 | 263 | public function getTableMetaData($table) | 
| 264 | 264 |      { | 
| 265 | 265 | $metadata = []; | 
| 266 | -        if (! empty($table)) { | |
| 266 | +        if (!empty($table)) { | |
| 267 | 267 | $sql = 'SHOW FIELDS FROM ' . $table; | 
| 268 | 268 | $result = $this->query($sql); | 
| 269 | 269 | $metadata = $this->getDriver()->getTableMetaData($result); | 
| @@ -285,7 +285,7 @@ discard block | ||
| 285 | 285 | */ | 
| 286 | 286 | public function setDriver($driver) | 
| 287 | 287 |      { | 
| 288 | -        if (! \in_array(Interfaces\DriverInterface::class, class_implements($driver), true)) { | |
| 288 | +        if (!\in_array(Interfaces\DriverInterface::class, class_implements($driver), true)) { | |
| 289 | 289 | throw new Exceptions\DriverException( | 
| 290 | 290 | $driver . ' should implements the ' . Interfaces\DriverInterface::class | 
| 291 | 291 | ); | 
| @@ -378,7 +378,7 @@ discard block | ||
| 378 | 378 | $table = $this->prepareFrom($table); | 
| 379 | 379 | $useFields = \is_array($fields) ? $this->prepareValues($fields) : $fields; | 
| 380 | 380 | |
| 381 | -            if (empty($useFields) || ! \is_scalar($useFields) || $useFields === '*') { | |
| 381 | +            if (empty($useFields) || !\is_scalar($useFields) || $useFields === '*') { | |
| 382 | 382 |                  throw (new Exceptions\InvalidFieldException('Invalid insert fields')) | 
| 383 | 383 | ->setData($fields); | 
| 384 | 384 | } | 
| @@ -417,7 +417,7 @@ discard block | ||
| 417 | 417 | $table = $this->prepareFrom($table); | 
| 418 | 418 | $useFields = \is_array($fields) ? $this->prepareFields($fields, true) : $fields; | 
| 419 | 419 | |
| 420 | -        if (empty($useFields) || ! \is_scalar($useFields) || $useFields === '*') { | |
| 420 | +        if (empty($useFields) || !\is_scalar($useFields) || $useFields === '*') { | |
| 421 | 421 |              throw (new Exceptions\InvalidFieldException('Invalid insert fields')) | 
| 422 | 422 | ->setData($fields); | 
| 423 | 423 | } | 
| @@ -523,7 +523,7 @@ discard block | ||
| 523 | 523 | |
| 524 | 524 |          if ($this->config['driver'] === 'pgsql') { | 
| 525 | 525 | $db = $this->getTableName($table); | 
| 526 | -        }else{ | |
| 526 | +        } else { | |
| 527 | 527 |              $db = implode('.', [ | 
| 528 | 528 |                  '`' . $this->getConfig('database') . '`', | 
| 529 | 529 | $this->getTableName($table) | 
| @@ -536,7 +536,7 @@ discard block | ||
| 536 | 536 | /** | 
| 537 | 537 |       * {@inheritDoc} | 
| 538 | 538 | */ | 
| 539 | - public function begin ($flag = 0, $name = null) | |
| 539 | + public function begin($flag = 0, $name = null) | |
| 540 | 540 |      { | 
| 541 | 541 | return $this->getDriver()->begin($flag, $name); | 
| 542 | 542 | } | 
| @@ -544,7 +544,7 @@ discard block | ||
| 544 | 544 | /** | 
| 545 | 545 |       * {@inheritDoc} | 
| 546 | 546 | */ | 
| 547 | - public function commit ($flag = 0, $name = null) | |
| 547 | + public function commit($flag = 0, $name = null) | |
| 548 | 548 |      { | 
| 549 | 549 | return $this->getDriver()->commit($flag, $name); | 
| 550 | 550 | } | 
| @@ -552,7 +552,7 @@ discard block | ||
| 552 | 552 | /** | 
| 553 | 553 |       * {@inheritDoc} | 
| 554 | 554 | */ | 
| 555 | - public function rollback ($flag = 0, $name = null) | |
| 555 | + public function rollback($flag = 0, $name = null) | |
| 556 | 556 |      { | 
| 557 | 557 | return $this->getDriver()->rollback($flag, $name); | 
| 558 | 558 | } | 
| @@ -523,7 +523,7 @@ | ||
| 523 | 523 | |
| 524 | 524 |          if ($this->config['driver'] === 'pgsql') { | 
| 525 | 525 | $db = $this->getTableName($table); | 
| 526 | -        }else{ | |
| 526 | +        } else{ | |
| 527 | 527 |              $db = implode('.', [ | 
| 528 | 528 |                  '`' . $this->getConfig('database') . '`', | 
| 529 | 529 | $this->getTableName($table) |