Completed
Push — master ( 85365e...e15913 )
by Richard
09:37
created
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.
htdocs/modules/system/class/fineuploadhandler.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -62,6 +62,7 @@  discard block
 block discarded – undo
62 62
 
63 63
     /**
64 64
      * Get the original filename
65
+     * @return string
65 66
      */
66 67
     public function getName()
67 68
     {
@@ -269,6 +270,9 @@  discard block
 block discarded – undo
269 270
         }
270 271
     }
271 272
 
273
+    /**
274
+     * @param string $mimeType
275
+     */
272 276
     protected function storeUploadedFile($target, $mimeType, $uuid)
273 277
     {
274 278
         if (!is_dir(dirname($target))) {
Please login to merge, or discard this patch.
htdocs/class/textsanitizer/syntaxhighlight/syntaxhighlight.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,9 +44,9 @@
 block discarded – undo
44 44
     }
45 45
 
46 46
     /**
47
-     * @param $text
47
+     * @param string $text
48 48
      *
49
-     * @return mixed|string
49
+     * @return string
50 50
      */
51 51
     public function php($text)
52 52
     {
Please login to merge, or discard this patch.
upgrade/class/control.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -57,6 +57,9 @@
 block discarded – undo
57 57
     }
58 58
 
59 59
 
60
+    /**
61
+     * @param string $domain
62
+     */
60 63
     public function loadLanguage($domain, $language = null)
61 64
     {
62 65
         $supports = null;
Please login to merge, or discard this patch.
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.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.
upgrade/upd-2.5.8-to-2.5.9/index.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
      * @param string   $sourceName template file name
99 99
      * @param string   $fileName   configuration file name
100 100
      *
101
-     * @return true|string true on success, error message on failure
101
+     * @return string|boolean true on success, error message on failure
102 102
      */
103 103
     protected function writeConfigurationFile($vars, $path, $sourceName, $fileName)
104 104
     {
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
     /**
193 193
      * Rewrite mainfile and secure file with current templates
194 194
      *
195
-     * @return bool
195
+     * @return string|boolean
196 196
      */
197 197
     public function apply_zaplegacy()
198 198
     {
Please login to merge, or discard this patch.
htdocs/class/libraries/vendor/webmozart/assert/src/Assert.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -363,6 +363,9 @@  discard block
 block discarded – undo
363 363
         }
364 364
     }
365 365
 
366
+    /**
367
+     * @param integer $value
368
+     */
366 369
     public static function eq($value, $value2, $message = '')
367 370
     {
368 371
         if ($value2 != $value) {
@@ -937,6 +940,9 @@  discard block
 block discarded – undo
937 940
         return mb_strwidth($value, $encoding);
938 941
     }
939 942
 
943
+    /**
944
+     * @param string $message
945
+     */
940 946
     protected static function reportInvalidArgument($message)
941 947
     {
942 948
         throw new InvalidArgumentException($message);
Please login to merge, or discard this patch.