Completed
Push — master ( d2cc80...ff3baa )
by smiley
04:21
created
src/Drivers/SQLite/SQLite3Driver.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Class SQLite3Driver
4
- *
5
- * @filesource   SQLite3Driver.php
6
- * @created      21.02.2016
7
- * @package      chillerlan\Database\Drivers\SQLite
8
- * @author       Smiley <[email protected]>
9
- * @copyright    2016 Smiley
10
- * @license      MIT
11
- */
3
+	 * Class SQLite3Driver
4
+	 *
5
+	 * @filesource   SQLite3Driver.php
6
+	 * @created      21.02.2016
7
+	 * @package      chillerlan\Database\Drivers\SQLite
8
+	 * @author       Smiley <[email protected]>
9
+	 * @copyright    2016 Smiley
10
+	 * @license      MIT
11
+	 */
12 12
 
13 13
 namespace chillerlan\Database\Drivers\SQLite;
14 14
 
Please login to merge, or discard this patch.
src/Querystats.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Class Querystats
4
- *
5
- * @filesource   Querystats.php
6
- * @created      05.11.2015
7
- * @package      chillerlan\Database
8
- * @author       Smiley <[email protected]>
9
- * @copyright    2015 Smiley
10
- * @license      MIT
11
- */
3
+	 * Class Querystats
4
+	 *
5
+	 * @filesource   Querystats.php
6
+	 * @created      05.11.2015
7
+	 * @package      chillerlan\Database
8
+	 * @author       Smiley <[email protected]>
9
+	 * @copyright    2015 Smiley
10
+	 * @license      MIT
11
+	 */
12 12
 
13 13
 namespace chillerlan\Database;
14 14
 
Please login to merge, or discard this patch.
src/Traits/ClassLoaderTrait.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,12 +31,13 @@
 block discarded – undo
31 31
 	 * @return object of type $interface
32 32
 	 * @throws \chillerlan\Database\DBException
33 33
 	 */
34
-	protected function __loadClass($class, $interface, ...$params){ // phpDocumentor stumbles across the ... syntax
34
+	protected function __loadClass($class, $interface, ...$params){
35
+// phpDocumentor stumbles across the ... syntax
35 36
 
36 37
 		if(class_exists($class)){
37 38
 			$reflectionClass = new ReflectionClass($class);
38 39
 
39
-			if(!$reflectionClass->implementsInterface($interface)) {
40
+			if(!$reflectionClass->implementsInterface($interface)){
40 41
 				throw new DBException($class.' does not implement '.$interface);
41 42
 			}
42 43
 
Please login to merge, or discard this patch.