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