Completed
Pull Request — master (#5)
by Opeyemi
18:23 queued 03:31
created
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 InvalidArgumentException;
5 6
 use PDO;
6 7
 use PDOException;
7
-use InvalidArgumentException;
8 8
 
9 9
 final class MySqlConnection implements Connection
10 10
 {
Please login to merge, or discard this patch.
src/Connections/PgSqlConnection.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Opeyemiabiodun\PotatoORM\Connections;
4 4
 
5
+use InvalidArgumentException;
5 6
 use PDO;
6 7
 use PDOException;
7 8
 use RuntimeException;
8
-use InvalidArgumentException;
9 9
 
10 10
 final class PgSqlConnection implements Connection
11 11
 {
Please login to merge, or discard this patch.
src/Connections/SqliteConnection.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 InvalidArgumentException;
5 6
 use PDO;
6 7
 use PDOException;
7
-use InvalidArgumentException;
8 8
 
9 9
 final class SqliteConnection implements Connection
10 10
 {
Please login to merge, or discard this patch.