Completed
Push — master ( d508c6...ead087 )
by smiley
02:37
created
src/DBQuery.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,11 +14,11 @@
 block discarded – undo
14 14
 
15 15
 use chillerlan\Database\Drivers\DBDriverInterface;
16 16
 use chillerlan\Database\Query\AlterInterface;
17
+use chillerlan\Database\Query\CreateDatabaseInterface;
17 18
 use chillerlan\Database\Query\CreateInterface;
19
+use chillerlan\Database\Query\CreateTableInterface;
18 20
 use chillerlan\Database\Query\DropInterface;
19 21
 use chillerlan\Database\Query\StatementAbstract;
20
-use chillerlan\Database\Query\CreateDatabaseInterface;
21
-use chillerlan\Database\Query\CreateTableInterface;
22 22
 /**
23 23
  * @property \chillerlan\Database\Query\SelectInterface $select
24 24
  * @property \chillerlan\Database\Query\InsertInterface $insert
Please login to merge, or discard this patch.
src/Query/Dialects/SQLite/CreateTable.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,8 +12,8 @@
 block discarded – undo
12 12
 
13 13
 namespace chillerlan\Database\Query\Dialects\SQLite;
14 14
 
15
-use chillerlan\Database\Query\CreateTableInterface;
16 15
 use chillerlan\Database\Query\CreateTableAbstract;
16
+use chillerlan\Database\Query\CreateTableInterface;
17 17
 use chillerlan\Database\Query\QueryException;
18 18
 
19 19
 /**
Please login to merge, or discard this patch.
src/Query/SelectAbstract.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 
50 50
 	/**
51 51
 	 * @param      $expr1
52
-	 * @param null $expr2
52
+	 * @param string|null $expr2
53 53
 	 * @param null $func
54 54
 	 *
55 55
 	 * @return void
Please login to merge, or discard this patch.
src/Query/Traits/WhereTrait.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -21,6 +21,9 @@
 block discarded – undo
21 21
 	 */
22 22
 	protected $where = [];
23 23
 
24
+	/**
25
+	 * @param string $operator
26
+	 */
24 27
 	protected function _addWhere($val1, $val2 = null, $operator = null, $bind = true, $join = 'AND'){
25 28
 		$operator = strtoupper(trim($operator));
26 29
 		$join = strtoupper(trim($join));
Please login to merge, or discard this patch.
src/Query/UpdateInterface.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -14,8 +14,19 @@
 block discarded – undo
14 14
 
15 15
 interface UpdateInterface extends StatementInterface{
16 16
 
17
+	/**
18
+	 * @return void
19
+	 */
17 20
 	public function table();
21
+
22
+	/**
23
+	 * @return void
24
+	 */
18 25
 	public function set();
26
+
27
+	/**
28
+	 * @return UpdateAbstract
29
+	 */
19 30
 	public function where($val1, $val2, $operator = '=', $bind = true, $join = 'AND');
20 31
 
21 32
 }
Please login to merge, or discard this patch.