Completed
Push — develop ( 91eb81...8401cc )
by Timothy
01:47
created
RoboFile.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,6 +2,10 @@  discard block
 block discarded – undo
2 2
 if ( ! function_exists('glob_recursive'))
3 3
 {
4 4
 	// Does not support flag GLOB_BRACE
5
+
6
+	/**
7
+	 * @param string $pattern
8
+	 */
5 9
 	function glob_recursive($pattern, $flags = 0)
6 10
 	{
7 11
 		$files = glob($pattern, $flags);
@@ -322,7 +326,7 @@  discard block
 block discarded – undo
322 326
 	 * Shortcut for joining an array of command arguments
323 327
 	 * and then running it
324 328
 	 *
325
-	 * @param array $cmd_parts - command arguments
329
+	 * @param string[] $cmd_parts - command arguments
326 330
 	 * @param string $join_on - what to join the command arguments with
327 331
 	 */
328 332
 	protected function _run(array $cmd_parts, $join_on = ' ')
Please login to merge, or discard this patch.
src/QueryBuilder.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
 	/**
222 222
 	 * Constructor
223 223
 	 *
224
-	 * @param DriverInterface $driver
224
+	 * @param Drivers\DriverInterface $driver
225 225
 	 * @param QueryParser $parser
226 226
 	 */
227 227
 	public function __construct(DriverInterface $driver, QueryParser $parser)
@@ -933,7 +933,7 @@  discard block
 block discarded – undo
933 933
 	 * @param string $table
934 934
 	 * @param array|object $data
935 935
 	 * @param string $where
936
-	 * @return int|null
936
+	 * @return PDOStatement|null
937 937
 	 */
938 938
 	public function updateBatch($table, $data, $where)
939 939
 	{
Please login to merge, or discard this patch.