@@ -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 | } |
@@ -36,6 +36,5 @@ |
||
36 | 36 | * @class ConnectionException |
37 | 37 | * @package Platine\Database\Exception |
38 | 38 | */ |
39 | -class ConnectionException extends DatabaseException |
|
40 | -{ |
|
39 | +class ConnectionException extends DatabaseException { |
|
41 | 40 | } |
@@ -38,6 +38,5 @@ |
||
38 | 38 | * @class DatabaseException |
39 | 39 | * @package Platine\Database\Exception |
40 | 40 | */ |
41 | -class DatabaseException extends Exception |
|
42 | -{ |
|
41 | +class DatabaseException extends Exception { |
|
43 | 42 | } |
@@ -38,6 +38,5 @@ |
||
38 | 38 | * @class ConnectionNotFoundException |
39 | 39 | * @package Platine\Database\Exception |
40 | 40 | */ |
41 | -class ConnectionNotFoundException extends Exception |
|
42 | -{ |
|
41 | +class ConnectionNotFoundException extends Exception { |
|
43 | 42 | } |
@@ -36,6 +36,5 @@ |
||
36 | 36 | * @class QueryPrepareException |
37 | 37 | * @package Platine\Database\Exception |
38 | 38 | */ |
39 | -class QueryPrepareException extends DatabaseException |
|
40 | -{ |
|
39 | +class QueryPrepareException extends DatabaseException { |
|
41 | 40 | } |