Passed
Push — develop ( 963f5e...46a4a0 )
by nguereza
02:17
created
src/Driver/MySQL.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,8 +52,7 @@
 block discarded – undo
52 52
  * @class MySQL
53 53
  * @package Platine\Database\Driver
54 54
  */
55
-class MySQL extends Driver
56
-{
55
+class MySQL extends Driver {
57 56
     /**
58 57
      * @inheritdoc
59 58
      * @var string
Please login to merge, or discard this patch.
src/Driver/Oracle.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@
 block discarded – undo
55 55
  * @class Oracle
56 56
  * @package Platine\Database\Driver
57 57
  */
58
-class Oracle extends Driver
59
-{
58
+class Oracle extends Driver {
60 59
     /**
61 60
      * @inheritDoc
62 61
      */
Please login to merge, or discard this patch.
src/Driver/SQLite.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,8 +54,7 @@
 block discarded – undo
54 54
  * @class SQLite
55 55
  * @package Platine\Database\Driver
56 56
  */
57
-class SQLite extends Driver
58
-{
57
+class SQLite extends Driver {
59 58
     /**
60 59
      * @inheritdoc
61 60
      * @var string
Please login to merge, or discard this patch.
src/Driver/SQLServer.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@
 block discarded – undo
55 55
  * @class SQLServer
56 56
  * @package Platine\Database\Driver
57 57
  */
58
-class SQLServer extends Driver
59
-{
58
+class SQLServer extends Driver {
60 59
     /**
61 60
      * @inheritdoc
62 61
      * @var string
Please login to merge, or discard this patch.
src/Pool.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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 (count($config) > 0) {
77 75
             if (
78 76
                 is_array($config['connections']) &&
Please login to merge, or discard this patch.
src/Connection.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,8 +61,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/ConnectionStatement.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,8 +52,7 @@
 block discarded – undo
52 52
  * @class ConnectionStatement
53 53
  * @package Platine\Database
54 54
  */
55
-class ConnectionStatement extends PDOStatement
56
-{
55
+class ConnectionStatement extends PDOStatement {
57 56
     /**
58 57
      * {@inheritdoc}
59 58
      */
Please login to merge, or discard this patch.
src/Query/Delete.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@
 block discarded – undo
53 53
  * @class Delete
54 54
  * @package Platine\Database\Query
55 55
  */
56
-class Delete extends DeleteStatement
57
-{
56
+class Delete extends DeleteStatement {
58 57
     /**
59 58
      * @var Connection
60 59
      */
Please login to merge, or discard this patch.
src/Query/Update.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,8 +52,7 @@
 block discarded – undo
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
      */
Please login to merge, or discard this patch.