Completed
Push — master ( e162f1...f964ff )
by Michael
11:01
created
upgrade/upd-2.0.15-to-2.0.16/index.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     }
18 18
 
19 19
     /**
20
-     * @param $sql
20
+     * @param string $sql
21 21
      */
22 22
     protected function query($sql)
23 23
     {
Please login to merge, or discard this patch.
upgrade/upd-2.4.x-to-2.5.0/dbmanager.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
     }
201 201
 
202 202
     /**
203
-     * @param $sql
203
+     * @param string $sql
204 204
      *
205 205
      * @return mixed
206 206
      */
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
     }
213 213
 
214 214
     /**
215
-     * @param $table
215
+     * @param string $table
216 216
      *
217 217
      * @return mixed
218 218
      */
@@ -236,8 +236,8 @@  discard block
 block discarded – undo
236 236
     }
237 237
 
238 238
     /**
239
-     * @param $table
240
-     * @param $query
239
+     * @param string $table
240
+     * @param string $query
241 241
      *
242 242
      * @return bool
243 243
      */
Please login to merge, or discard this patch.
upgrade/upd-2.0.16-to-2.0.17/index.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     }
18 18
 
19 19
     /**
20
-     * @param $sql
20
+     * @param string $sql
21 21
      */
22 22
     protected function query($sql)
23 23
     {
Please login to merge, or discard this patch.
upgrade/upd-2.0.17-to-2.0.18/index.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     }
18 18
 
19 19
     /**
20
-     * @param $sql
20
+     * @param string $sql
21 21
      */
22 22
     protected function query($sql)
23 23
     {
Please login to merge, or discard this patch.
htdocs/class/libraries/vendor/kint-php/kint/decorators/plain.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -160,6 +160,9 @@  discard block
 block discarded – undo
160 160
 	}
161 161
 
162 162
 
163
+	/**
164
+	 * @param string $type
165
+	 */
163 166
 	private static function _colorize( $text, $type, $nlAfter = true )
164 167
 	{
165 168
 		$nlAfter = $nlAfter ? PHP_EOL : '';
@@ -201,6 +204,10 @@  discard block
 block discarded – undo
201 204
 	}
202 205
 
203 206
 
207
+	/**
208
+	 * @param string $char
209
+	 * @param integer $repeat
210
+	 */
204 211
 	private static function _char( $char, $repeat = null )
205 212
 	{
206 213
 		switch ( Kint::enabled() ) {
@@ -221,6 +228,9 @@  discard block
 block discarded – undo
221 228
 		return $repeat ? str_repeat( $char, $repeat ) : $char;
222 229
 	}
223 230
 
231
+	/**
232
+	 * @param string $text
233
+	 */
224 234
 	private static function _title( $text )
225 235
 	{
226 236
 		$escaped          = kintParser::escape( $text );
Please login to merge, or discard this patch.
htdocs/class/libraries/vendor/kint-php/kint/decorators/rich.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -171,7 +171,6 @@
 block discarded – undo
171 171
 	/**
172 172
 	 * called for each dump, opens the html tag
173 173
 	 *
174
-	 * @param array $callee caller information taken from debug backtrace
175 174
 	 *
176 175
 	 * @return string
177 176
 	 */
Please login to merge, or discard this patch.
htdocs/class/libraries/vendor/kint-php/kint/inc/kintParser.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -234,6 +234,9 @@
 block discarded – undo
234 234
 	}
235 235
 
236 236
 
237
+	/**
238
+	 * @return string|null
239
+	 */
237 240
 	public static function escape( $value, $encoding = null )
238 241
 	{
239 242
 		if ( empty( $value ) ) return $value;
Please login to merge, or discard this patch.
htdocs/class/libraries/vendor/kint-php/kint/inc/kintVariableData.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -90,6 +90,9 @@
 block discarded – undo
90 90
 		}
91 91
 	}
92 92
 
93
+	/**
94
+	 * @param integer $start
95
+	 */
93 96
 	protected static function _substr( $string, $start, $end, $encoding = null )
94 97
 	{
95 98
 		if ( function_exists( 'mb_substr' ) ) {
Please login to merge, or discard this patch.
htdocs/class/libraries/vendor/kint-php/kint/Kint.class.php 1 patch
Doc Comments   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
 	 *
108 108
 	 * @param array $trace [OPTIONAL] you can pass your own trace, otherwise, `debug_backtrace` will be called
109 109
 	 *
110
-	 * @return mixed
110
+	 * @return string|null
111 111
 	 */
112 112
 	public static function trace( $trace = null )
113 113
 	{
@@ -305,6 +305,9 @@  discard block
 block discarded – undo
305 305
 		return $shortenedName;
306 306
 	}
307 307
 
308
+	/**
309
+	 * @return string
310
+	 */
308 311
 	public static function getIdeLink( $file, $line )
309 312
 	{
310 313
 		return str_replace( array( '%f', '%l' ), array( $file, $line ), self::$fileLinkFormat );
@@ -317,7 +320,7 @@  discard block
 block discarded – undo
317 320
 	 * @param int    $lineNumber the line to display
318 321
 	 * @param int    $padding surrounding lines to show besides the main one
319 322
 	 *
320
-	 * @return bool|string
323
+	 * @return false|string
321 324
 	 */
322 325
 	private static function _showSource( $file, $lineNumber, $padding = 7 )
323 326
 	{
@@ -590,7 +593,7 @@  discard block
 block discarded – undo
590 593
 	 *
591 594
 	 * @param $step
592 595
 	 *
593
-	 * @return array
596
+	 * @return boolean
594 597
 	 */
595 598
 	private static function _stepIsInternal( $step )
596 599
 	{
Please login to merge, or discard this patch.