Completed
Branch master (df11b8)
by
unknown
15:39
created
src/Connections/PgSqlConnection.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Opeyemiabiodun\PotatoORM\Connections;
4 4
 
5
+use Opeyemiabiodun\PotatoORM\Connections\Connection;
5 6
 use PDO;
6 7
 use PDOException;
7
-use Opeyemiabiodun\PotatoORM\Connections\Connection;
8 8
 
9 9
 final class PgSqlConnection extends Connection
10 10
 {
Please login to merge, or discard this patch.
src/Connections/MySqlConnection.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Opeyemiabiodun\PotatoORM\Connections;
4 4
 
5
+use Opeyemiabiodun\PotatoORM\Connections\Connection;
5 6
 use PDO;
6 7
 use PDOException;
7
-use Opeyemiabiodun\PotatoORM\Connections\Connection;
8 8
 
9 9
 final class PgSqlConnection extends Connection
10 10
 {
Please login to merge, or discard this patch.
src/Models/Model.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 {
10 10
     protected $_attributes = [];
11 11
 
12
-	protected $_connection;
12
+    protected $_connection;
13 13
 
14 14
     protected $_primaryKey;
15 15
 
Please login to merge, or discard this patch.