Completed
Push — master ( 7d2702...ac2499 )
by smiley
02:20
created
tests/DBInstanceTest.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,15 +9,14 @@
 block discarded – undo
9 9
 
10 10
 namespace chillerlan\DatabaseTest;
11 11
 
12
+use Dotenv\Dotenv;
12 13
 use chillerlan\Database\DBOptions;
13 14
 use chillerlan\Database\Drivers\MySQLi\MySQLiDriver;
14
-use chillerlan\Database\Drivers\PDO\PDOFirebirdDriver;
15 15
 use chillerlan\Database\Drivers\PDO\PDOMySQLDriver;
16 16
 use chillerlan\Database\Drivers\PDO\PDOPostgresDriver;
17 17
 use chillerlan\Database\Drivers\PDO\PDOSQLiteDriver;
18 18
 use chillerlan\Database\Drivers\PostgreSQL\PostgreSQLDriver;
19 19
 use chillerlan\Database\Drivers\SQLite\SQLite3Driver;
20
-use Dotenv\Dotenv;
21 20
 
22 21
 class DBInstanceTest extends \PHPUnit_Framework_TestCase{
23 22
 
Please login to merge, or discard this patch.
src/Drivers/MySQLi/MySQLiDriver.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,6 +12,7 @@  discard block
 block discarded – undo
12 12
 
13 13
 namespace chillerlan\Database\Drivers\MySQLi;
14 14
 
15
+use ReflectionMethod;
15 16
 use chillerlan\Database\DBException;
16 17
 use chillerlan\Database\Drivers\DBBaseDriver;
17 18
 use chillerlan\Database\Drivers\DBDriverInterface;
@@ -19,8 +20,6 @@  discard block
 block discarded – undo
19 20
 use mysqli_result;
20 21
 use mysqli_sql_exception;
21 22
 use mysqli_stmt;
22
-use ReflectionClass;
23
-use ReflectionMethod;
24 23
 use stdClass;
25 24
 
26 25
 /**
Please login to merge, or discard this patch.
src/Drivers/SQLite/SQLite3Driver.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@
 block discarded – undo
12 12
 
13 13
 namespace chillerlan\Database\Drivers\SQLite;
14 14
 
15
-use chillerlan\Database\DBException;
16
-use chillerlan\Database\Drivers\DBDriverAbstract;
17 15
 use Exception;
18 16
 use SQLite3;
17
+use chillerlan\Database\DBException;
18
+use chillerlan\Database\Drivers\DBDriverAbstract;
19 19
 
20 20
 /**
21 21
  *
Please login to merge, or discard this patch.
src/Drivers/PDO/PDODriver.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@
 block discarded – undo
12 12
 
13 13
 namespace chillerlan\Database\Drivers\SQLite;
14 14
 
15
-use chillerlan\Database\DBException;
16
-use chillerlan\Database\Drivers\DBDriverAbstract;
17 15
 use Exception;
18 16
 use SQLite3;
17
+use chillerlan\Database\DBException;
18
+use chillerlan\Database\Drivers\DBDriverAbstract;
19 19
 
20 20
 /**
21 21
  *
Please login to merge, or discard this patch.
src/Drivers/PostgreSQL/PostgreSQLDriver.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- *
4
- * @filesource   PostgreSQLDriver.php
5
- * @created      21.02.2016
6
- * @package      chillerlan\Database\Drivers\PostgreSQL
7
- * @author       Smiley <[email protected]>
8
- * @copyright    2016 Smiley
9
- * @license      MIT
10
- */
3
+	 *
4
+	 * @filesource   PostgreSQLDriver.php
5
+	 * @created      21.02.2016
6
+	 * @package      chillerlan\Database\Drivers\PostgreSQL
7
+	 * @author       Smiley <[email protected]>
8
+	 * @copyright    2016 Smiley
9
+	 * @license      MIT
10
+	 */
11 11
 
12 12
 namespace chillerlan\Database\Drivers\PostgreSQL;
13 13
 
Please login to merge, or discard this patch.
src/bootstrap.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Database bootstrapper
4
- *
5
- * @filesource   bootstrap.php
6
- * @created      29.02.2016
7
- * @author       Smiley <[email protected]>
8
- * @copyright    2016 Smiley
9
- * @license      MIT
10
- */
3
+	 * Database bootstrapper
4
+	 *
5
+	 * @filesource   bootstrap.php
6
+	 * @created      29.02.2016
7
+	 * @author       Smiley <[email protected]>
8
+	 * @copyright    2016 Smiley
9
+	 * @license      MIT
10
+	 */
11 11
 
12 12
 /**
13 13
  * prevent notices in case sqlite3 extension is missing
Please login to merge, or discard this patch.