Completed
Pull Request — master (#5)
by Opeyemi
18:23 queued 03:31
created
src/Connections/ConnectionFactory.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -16,6 +16,9 @@
 block discarded – undo
16 16
     {
17 17
     }
18 18
 
19
+    /**
20
+     * @return Connection
21
+     */
19 22
     public static function load()
20 23
     {
21 24
         $dotenv = new Dotenv(__DIR__.'/../..');
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.