Completed
Push — master ( 220de0...482fe1 )
by smiley
04:40 queued 02:38
created
src/Drivers/DriverAbstract.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
 	/**
105 105
 	 * @param string   $sql
106 106
 	 * @param iterable $data
107
-	 * @param          $callback
107
+	 * @param          callable $callback
108 108
 	 *
109 109
 	 * @return bool
110 110
 	 */
Please login to merge, or discard this patch.
src/Drivers/PostgreSQL.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
 	}
87 87
 
88 88
 	/**
89
-	 * @param             $result
89
+	 * @param             resource $result
90 90
 	 * @param string|null $index
91 91
 	 * @param bool        $assoc
92 92
 	 *
Please login to merge, or discard this patch.
src/Query/Statement.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@
 block discarded – undo
24 24
 	 * @param \chillerlan\Database\Drivers\DriverInterface $db
25 25
 	 * @param \chillerlan\Database\Dialects\Dialect        $dialect
26 26
 	 * @param \Psr\Log\LoggerInterface|null                $logger
27
+	 * @return void
27 28
 	 */
28 29
 	public function __construct(DriverInterface $db, Dialect $dialect, LoggerInterface $logger = null);
29 30
 
Please login to merge, or discard this patch.
src/ResultInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
 	 * @param iterable|null $data
23 23
 	 * @param string|null   $sourceEncoding
24 24
 	 * @param string        $destEncoding
25
+	 * @return void
25 26
 	 */
26 27
 	public function __construct(iterable $data = null, string $sourceEncoding = null, string $destEncoding = null);
27 28
 
Please login to merge, or discard this patch.
src/Dialects/MySQL.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@
 block discarded – undo
119 119
 
120 120
 		// @todo: whitelist types?
121 121
 		$nolengthtypes = ['DATE', 'TINYBLOB', 'TINYTEXT', 'BLOB', 'TEXT', 'MEDIUMBLOB',
122
-		                  'MEDIUMTEXT', 'LONGBLOB', 'LONGTEXT', 'SERIAL', 'BOOLEAN', 'UUID'];
122
+						  'MEDIUMTEXT', 'LONGBLOB', 'LONGTEXT', 'SERIAL', 'BOOLEAN', 'UUID'];
123 123
 
124 124
 		$field[] = (is_int($length) || (is_string($length) && count(explode(',', $length)) === 2)) && !in_array($type, $nolengthtypes, true)
125 125
 			? $type.'('. $length . ')'
Please login to merge, or discard this patch.
src/Drivers/DriverInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@
 block discarded – undo
28 28
 	 * @param \chillerlan\Traits\ContainerInterface $options
29 29
 	 * @param \Psr\SimpleCache\CacheInterface|null  $cache
30 30
 	 * @param \Psr\Log\LoggerInterface|null         $logger
31
+	 * @return void
31 32
 	 */
32 33
 	public function __construct(ContainerInterface $options, CacheInterface $cache = null, LoggerInterface $logger = null);
33 34
 
Please login to merge, or discard this patch.