Completed
Push — master ( 0a44bb...612476 )
by smiley
02:15
created
src/DBResult.php 1 patch
Unused Use Statements   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,9 @@
 block discarded – undo
12 12
 
13 13
 namespace chillerlan\Database;
14 14
 
15
-use ArrayAccess, Countable, Iterator;
15
+use ArrayAccess;
16
+use Countable;
17
+use Iterator;
16 18
 use chillerlan\Database\Traits\{Enumerable, Magic};
17 19
 
18 20
 /**
Please login to merge, or discard this patch.
src/Drivers/DBDriverAbstract.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,10 +10,10 @@
 block discarded – undo
10 10
 
11 11
 namespace chillerlan\Database\Drivers;
12 12
 
13
+use Psr\SimpleCache\CacheInterface;
13 14
 use chillerlan\Database\DBException;
14 15
 use chillerlan\Database\DBOptions;
15 16
 use chillerlan\Database\DBResult;
16
-use Psr\SimpleCache\CacheInterface;
17 17
 
18 18
 /**
19 19
  * Class DBDriverAbstract
Please login to merge, or discard this patch.
src/Drivers/MySQLiDriver.php 1 patch
Unused Use Statements   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,10 +12,12 @@
 block discarded – undo
12 12
 
13 13
 namespace chillerlan\Database\Drivers;
14 14
 
15
+use ReflectionMethod;
15 16
 use chillerlan\Database\DBException;
16 17
 use chillerlan\Database\DBResult;
17
-use mysqli, mysqli_result, mysqli_sql_exception, mysqli_stmt;
18
-use ReflectionMethod, stdClass, Exception;
18
+use mysqli;
19
+use mysqli_result;
20
+use mysqli_stmt;
19 21
 
20 22
 /**
21 23
  *
Please login to merge, or discard this patch.
src/Drivers/PDO/PDODriverAbstract.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -11,12 +11,12 @@
 block discarded – undo
11 11
 
12 12
 namespace chillerlan\Database\Drivers\PDO;
13 13
 
14
-use chillerlan\Database\DBException;
15
-use chillerlan\Database\Drivers\DBDriverAbstract;
16
-use chillerlan\Database\Drivers\DBDriverInterface;
17 14
 use PDO;
18 15
 use PDOException;
19 16
 use PDOStatement;
17
+use chillerlan\Database\DBException;
18
+use chillerlan\Database\Drivers\DBDriverAbstract;
19
+use chillerlan\Database\Drivers\DBDriverInterface;
20 20
 
21 21
 /**
22 22
  * Class PDODriverAbstract
Please login to merge, or discard this patch.
src/DBResultRow.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 	 *
44 44
 	 * @return mixed|null
45 45
 	 */
46
-	public function __get(string $name) {
46
+	public function __get(string $name){
47 47
 
48 48
 		if(isset($this->array[$name])){
49 49
 			return $this->array[$name];
Please login to merge, or discard this patch.
tests/DBResultTest.php 1 patch
Unused Use Statements   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,8 +12,11 @@
 block discarded – undo
12 12
 
13 13
 namespace chillerlan\DatabaseTest;
14 14
 
15
+use ArrayAccess;
16
+use Countable;
17
+use Iterator;
15 18
 use chillerlan\Database\DBResult;
16
-use Iterator, ArrayAccess, Countable, stdClass;
19
+use stdClass;
17 20
 
18 21
 class DBResultTest extends TestAbstract{
19 22
 
Please login to merge, or discard this patch.
src/Traits/Magic.php 1 patch
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -14,21 +14,21 @@
 block discarded – undo
14 14
 
15 15
 trait Magic{
16 16
 
17
-	public function __get(string $name) {
17
+	public function __get(string $name){
18 18
 		return $this->get($name);
19 19
 	}
20 20
 
21
-	public function __set(string $name, $value) {
21
+	public function __set(string $name, $value){
22 22
 		$this->set($name, $value);
23 23
 	}
24 24
 
25
-	private function get(string $name) {
25
+	private function get(string $name){
26 26
 		$method = 'magic_get_'.$name;
27 27
 
28 28
 		return method_exists($this, $method) ? $this->$method() : null;
29 29
 	}
30 30
 
31
-	private function set(string $name, $value) {
31
+	private function set(string $name, $value){
32 32
 		$method = 'magic_set_'.$name;
33 33
 
34 34
 		if(method_exists($this, $method)){
Please login to merge, or discard this patch.
tests/Drivers/DriverTestAbstract.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 
13 13
 namespace chillerlan\DatabaseTest\Drivers;
14 14
 
15
+use chillerlan\DatabaseTest\TestAbstract;
15 16
 use chillerlan\Database\DBResult;
16 17
 use chillerlan\Database\Drivers\DBDriverInterface;
17
-use chillerlan\DatabaseTest\TestAbstract;
18 18
 
19 19
 abstract class DriverTestAbstract extends TestAbstract{
20 20
 
Please login to merge, or discard this patch.