Completed
Push — master ( 2041e7...c131ba )
by Ron
02:14
created
src/Databases/MySQL.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -261,7 +261,7 @@
 block discarded – undo
261 261
 	}
262 262
 
263 263
 	/**
264
-	 * @param int|callable $tries
264
+	 * @param integer $tries
265 265
 	 * @param callable|null $callback
266 266
 	 * @return mixed
267 267
 	 * @throws \Exception
Please login to merge, or discard this patch.
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   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
 	/**
244 244
 	 * @param Closure $callback
245 245
 	 * @param int $mode
246
-	 * @param mixed $arg0
246
+	 * @param string $arg0
247 247
 	 * @return mixed
248 248
 	 * @throws RuntimeException
249 249
 	 */
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
 	/**
278 278
 	 * @param Closure $callback
279 279
 	 * @param int $mode
280
-	 * @param mixed $arg0
280
+	 * @param string $arg0
281 281
 	 * @return Traversable|YieldPolyfillIterator|mixed[]
282 282
 	 */
283 283
 	private function fetchLazy(Closure $callback = null, $mode, $arg0 = null) {
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
 	/**
298 298
 	 * @param Closure $callback
299 299
 	 * @param int $mode
300
-	 * @param mixed $arg0
300
+	 * @param null|string $arg0
301 301
 	 * @param Closure $resultValidator
302 302
 	 * @return mixed
303 303
 	 * @throws \Exception
Please login to merge, or discard this patch.