@@ -376,7 +376,7 @@ |
||
| 376 | 376 | |
| 377 | 377 | return (string) preg_replace_callback( |
| 378 | 378 | '/\?/', |
| 379 | - function () use ($driver, &$params) { |
|
| 379 | + function() use ($driver, &$params) { |
|
| 380 | 380 | $param = array_shift($params); |
| 381 | 381 | |
| 382 | 382 | $value = is_object($param) ? get_class($param) : $param; |
@@ -61,8 +61,7 @@ discard block |
||
| 61 | 61 | * @class Connection |
| 62 | 62 | * @package Platine\Database |
| 63 | 63 | */ |
| 64 | -class Connection |
|
| 65 | -{ |
|
| 64 | +class Connection { |
|
| 66 | 65 | /** |
| 67 | 66 | * The PDO instance |
| 68 | 67 | * @var PDO |
@@ -401,8 +400,7 @@ discard block |
||
| 401 | 400 | * @return mixed |
| 402 | 401 | * @throws QueryException |
| 403 | 402 | */ |
| 404 | - public function column(string $sql, array $params = []) |
|
| 405 | - { |
|
| 403 | + public function column(string $sql, array $params = []) { |
|
| 406 | 404 | $prepared = $this->prepare($sql, $params); |
| 407 | 405 | $this->execute($prepared); |
| 408 | 406 | |
@@ -454,8 +452,7 @@ discard block |
||
| 454 | 452 | /** |
| 455 | 453 | * {@inheritdoc} |
| 456 | 454 | */ |
| 457 | - public function __sleep() |
|
| 458 | - { |
|
| 455 | + public function __sleep() { |
|
| 459 | 456 | return [ |
| 460 | 457 | 'dsn', |
| 461 | 458 | 'driver', |
@@ -469,8 +466,7 @@ discard block |
||
| 469 | 466 | /** |
| 470 | 467 | * {@inheritdoc} |
| 471 | 468 | */ |
| 472 | - public function __wakeup() |
|
| 473 | - { |
|
| 469 | + public function __wakeup() { |
|
| 474 | 470 | $this->createPDO(); |
| 475 | 471 | } |
| 476 | 472 | |
@@ -292,7 +292,7 @@ |
||
| 292 | 292 | bool $isColumn = false |
| 293 | 293 | ): WhereStatement { |
| 294 | 294 | if ($isColumn && is_string($value)) { |
| 295 | - $value = function (Expression $expr) use ($value) { |
|
| 295 | + $value = function(Expression $expr) use ($value) { |
|
| 296 | 296 | return $expr->column($value); |
| 297 | 297 | }; |
| 298 | 298 | } |
@@ -52,8 +52,7 @@ discard block |
||
| 52 | 52 | * @class Where |
| 53 | 53 | * @package Platine\Database\Query |
| 54 | 54 | */ |
| 55 | -class Where |
|
| 56 | -{ |
|
| 55 | +class Where { |
|
| 57 | 56 | /** |
| 58 | 57 | * @var string|Expression |
| 59 | 58 | */ |
@@ -270,8 +269,7 @@ discard block |
||
| 270 | 269 | /** |
| 271 | 270 | * @inheritDoc |
| 272 | 271 | */ |
| 273 | - public function __clone() |
|
| 274 | - { |
|
| 272 | + public function __clone() { |
|
| 275 | 273 | if ($this->column instanceof Expression) { |
| 276 | 274 | $this->column = clone $this->column; |
| 277 | 275 | } |
@@ -125,11 +125,11 @@ |
||
| 125 | 125 | |
| 126 | 126 | foreach ($columns as $key => $val) { |
| 127 | 127 | if (is_numeric($key)) { |
| 128 | - $values[$val] = function (Expression $expr) use ($sign, $val, $value) { |
|
| 128 | + $values[$val] = function(Expression $expr) use ($sign, $val, $value) { |
|
| 129 | 129 | $expr->column($val)->op($sign)->value($value); |
| 130 | 130 | }; |
| 131 | 131 | } else { |
| 132 | - $values[$key] = function (Expression $expr) use ($sign, $key, $val) { |
|
| 132 | + $values[$key] = function(Expression $expr) use ($sign, $key, $val) { |
|
| 133 | 133 | $expr->column($key)->op($sign)->value($val); |
| 134 | 134 | }; |
| 135 | 135 | } |
@@ -52,8 +52,7 @@ discard block |
||
| 52 | 52 | * @class Update |
| 53 | 53 | * @package Platine\Database\Query |
| 54 | 54 | */ |
| 55 | -class Update extends UpdateStatement |
|
| 56 | -{ |
|
| 55 | +class Update extends UpdateStatement { |
|
| 57 | 56 | /** |
| 58 | 57 | * @var Connection |
| 59 | 58 | */ |
@@ -65,8 +64,7 @@ discard block |
||
| 65 | 64 | * @param string|array<int, string> $table |
| 66 | 65 | * @param QueryStatement|null $queryStatement |
| 67 | 66 | */ |
| 68 | - public function __construct(Connection $connection, $table, QueryStatement $queryStatement = null) |
|
| 69 | - { |
|
| 67 | + public function __construct(Connection $connection, $table, QueryStatement $queryStatement = null) { |
|
| 70 | 68 | parent::__construct($table, $queryStatement); |
| 71 | 69 | |
| 72 | 70 | $this->connection = $connection; |
@@ -53,8 +53,7 @@ discard block |
||
| 53 | 53 | * |
| 54 | 54 | * @package Platine\Database\Query |
| 55 | 55 | */ |
| 56 | -class QueryStatement |
|
| 57 | -{ |
|
| 56 | +class QueryStatement { |
|
| 58 | 57 | /** |
| 59 | 58 | * The where SQL parts |
| 60 | 59 | * @var array<int, mixed> |
@@ -348,8 +347,7 @@ discard block |
||
| 348 | 347 | * @param bool $not |
| 349 | 348 | * @return mixed |
| 350 | 349 | */ |
| 351 | - public function addHavingIn($aggregate, $value, string $separator, bool $not) |
|
| 352 | - { |
|
| 350 | + public function addHavingIn($aggregate, $value, string $separator, bool $not) { |
|
| 353 | 351 | $aggregate = $this->closureToExpression($aggregate); |
| 354 | 352 | |
| 355 | 353 | if ($value instanceof Closure) { |
@@ -617,8 +615,7 @@ discard block |
||
| 617 | 615 | * |
| 618 | 616 | * @return mixed|Expression |
| 619 | 617 | */ |
| 620 | - protected function closureToExpression($value) |
|
| 621 | - { |
|
| 618 | + protected function closureToExpression($value) { |
|
| 622 | 619 | if ($value instanceof Closure) { |
| 623 | 620 | return Expression::fromClosure($value); |
| 624 | 621 | } |
@@ -53,8 +53,7 @@ discard block |
||
| 53 | 53 | * @class Schema |
| 54 | 54 | * @package Platine\Database |
| 55 | 55 | */ |
| 56 | -class Schema |
|
| 57 | -{ |
|
| 56 | +class Schema { |
|
| 58 | 57 | /** |
| 59 | 58 | * The Connection instance |
| 60 | 59 | * @var Connection |
@@ -89,8 +88,7 @@ discard block |
||
| 89 | 88 | * Class constructor |
| 90 | 89 | * @param Connection $connection |
| 91 | 90 | */ |
| 92 | - public function __construct(Connection $connection) |
|
| 93 | - { |
|
| 91 | + public function __construct(Connection $connection) { |
|
| 94 | 92 | $this->connection = $connection; |
| 95 | 93 | } |
| 96 | 94 | |
@@ -55,8 +55,7 @@ discard block |
||
| 55 | 55 | * @class QueryBuilder |
| 56 | 56 | * @package Platine\Database |
| 57 | 57 | */ |
| 58 | -class QueryBuilder |
|
| 59 | -{ |
|
| 58 | +class QueryBuilder { |
|
| 60 | 59 | /** |
| 61 | 60 | * The Connection instance |
| 62 | 61 | * @var Connection |
@@ -73,8 +72,7 @@ discard block |
||
| 73 | 72 | * Class constructor |
| 74 | 73 | * @param Connection $connection |
| 75 | 74 | */ |
| 76 | - public function __construct(Connection $connection) |
|
| 77 | - { |
|
| 75 | + public function __construct(Connection $connection) { |
|
| 78 | 76 | $this->connection = $connection; |
| 79 | 77 | $this->schema = $this->connection->getSchema(); |
| 80 | 78 | } |
@@ -113,8 +111,7 @@ discard block |
||
| 113 | 111 | * @param callable $callback |
| 114 | 112 | * @return mixed |
| 115 | 113 | */ |
| 116 | - public function transaction(callable $callback) |
|
| 117 | - { |
|
| 114 | + public function transaction(callable $callback) { |
|
| 118 | 115 | return $this->connection->transaction($callback, $this); |
| 119 | 116 | } |
| 120 | 117 | |
@@ -53,8 +53,7 @@ discard block |
||
| 53 | 53 | * @class Pool |
| 54 | 54 | * @package Platine\Database |
| 55 | 55 | */ |
| 56 | -class Pool |
|
| 57 | -{ |
|
| 56 | +class Pool { |
|
| 58 | 57 | /** |
| 59 | 58 | * The default connection name |
| 60 | 59 | * @var string |
@@ -71,8 +70,7 @@ discard block |
||
| 71 | 70 | * Class constructor |
| 72 | 71 | * @param array<string, mixed> $config |
| 73 | 72 | */ |
| 74 | - public function __construct(array $config = []) |
|
| 75 | - { |
|
| 73 | + public function __construct(array $config = []) { |
|
| 76 | 74 | if (!empty($config)) { |
| 77 | 75 | if ( |
| 78 | 76 | !empty($config['connections']) |
@@ -36,6 +36,5 @@ |
||
| 36 | 36 | * @class TransactionException |
| 37 | 37 | * @package Platine\Database\Exception |
| 38 | 38 | */ |
| 39 | -class TransactionException extends DatabaseException |
|
| 40 | -{ |
|
| 39 | +class TransactionException extends DatabaseException { |
|
| 41 | 40 | } |
@@ -38,6 +38,5 @@ |
||
| 38 | 38 | * @class ConnectionAlreadyExistsException |
| 39 | 39 | * @package Platine\Database\Exception |
| 40 | 40 | */ |
| 41 | -class ConnectionAlreadyExistsException extends Exception |
|
| 42 | -{ |
|
| 41 | +class ConnectionAlreadyExistsException extends Exception { |
|
| 43 | 42 | } |