Completed
Push — master ( 7d2702...ac2499 )
by smiley
02:20
created
src/Drivers/SQLite/SQLite3Driver.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
 	 * @param string $sql    The SQL statement to prepare
169 169
 	 * @param array  $values a multidimensional array with the values, each row represents one line to insert.
170 170
 	 *
171
-	 * @return bool true query success, otherwise false
171
+	 * @return boolean|null true query success, otherwise false
172 172
 	 */
173 173
 	public function multi($sql, array $values){
174 174
 		// TODO: Implement multi() method.
Please login to merge, or discard this patch.
src/Drivers/DBDriverInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -86,6 +86,7 @@
 block discarded – undo
86 86
 	 *
87 87
 	 * @param array $stats
88 88
 	 * @internal
89
+	 * @return void
89 90
 	 */
90 91
 	public function addStats(array $stats);
91 92
 
Please login to merge, or discard this patch.
src/Drivers/PostgreSQL/PostgreSQLDriver.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
 	 * @param string $sql    The SQL statement to prepare
169 169
 	 * @param array  $values a multidimensional array with the values, each row represents one line to insert.
170 170
 	 *
171
-	 * @return bool true query success, otherwise false
171
+	 * @return boolean|null true query success, otherwise false
172 172
 	 */
173 173
 	public function multi($sql, array $values){
174 174
 		// TODO: Implement multi() method.
Please login to merge, or discard this 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.