Completed
Push — master ( 01769e...5b8011 )
by Ron
03:23
created
src/Builder/Helpers/YieldPolyfillIterator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
 	}
75 75
 
76 76
 	/**
77
-	 * @return mixed
77
+	 * @return integer
78 78
 	 */
79 79
 	public function key() {
80 80
 		return $this->idx;
Please login to merge, or discard this patch.
src/Builder/Select.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
 	}
79 79
 
80 80
 	/**
81
-	 * @return array
81
+	 * @return string[]
82 82
 	 */
83 83
 	public function getFields() {
84 84
 		return $this->fields;
Please login to merge, or discard this patch.
src/Builder/RunnableSelect.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
 	}
181 181
 
182 182
 	/**
183
-	 * @return bool
183
+	 * @return integer
184 184
 	 */
185 185
 	public function getFoundRows() {
186 186
 		return $this->foundRows;
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
 	/**
229 229
 	 * @param Closure $callback
230 230
 	 * @param int $mode
231
-	 * @param mixed $arg0
231
+	 * @param string $arg0
232 232
 	 * @return mixed
233 233
 	 * @throws \Exception
234 234
 	 */
@@ -262,7 +262,7 @@  discard block
 block discarded – undo
262 262
 	/**
263 263
 	 * @param Closure $callback
264 264
 	 * @param int $mode
265
-	 * @param mixed $arg0
265
+	 * @param string $arg0
266 266
 	 * @return Generator|YieldPolyfillIterator|mixed[]
267 267
 	 */
268 268
 	private function fetchLazy(Closure $callback = null, $mode, $arg0 = null) {
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
 	/**
283 283
 	 * @param Closure $callback
284 284
 	 * @param int $mode
285
-	 * @param mixed $arg0
285
+	 * @param null|string $arg0
286 286
 	 * @param Closure $resultValidator
287 287
 	 * @return mixed
288 288
 	 * @throws \Exception
Please login to merge, or discard this patch.