Completed
Push — psr2 ( 5aa905...fdf613 )
by Andreas
12:02 queued 08:25
created
inc/media.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -638,7 +638,7 @@  discard block
 block discarded – undo
638 638
  * @param string   $file    path to file
639 639
  * @param string   $mime    mime type
640 640
  * @param bool|int $old_rev revision timestamp or false
641
- * @return bool
641
+ * @return false|null
642 642
  */
643 643
 function media_notify($id,$file,$mime,$old_rev=false){
644 644
     global $conf;
@@ -908,7 +908,7 @@  discard block
 block discarded – undo
908 908
  * @param string     $image media id
909 909
  * @param string     $ns
910 910
  * @param null|int   $auth  permission level
911
- * @param string|int $rev   revision timestamp or empty string
911
+ * @param boolean $rev   revision timestamp or empty string
912 912
  */
913 913
 function media_tab_view($image, $ns, $auth=null, $rev='') {
914 914
     global $lang;
@@ -977,7 +977,7 @@  discard block
 block discarded – undo
977 977
  * @param string         $image media id
978 978
  * @param int            $auth permission level
979 979
  * @param int|string     $rev revision timestamp or empty string
980
- * @param JpegMeta|bool  $meta
980
+ * @param JpegMeta  $meta
981 981
  *
982 982
  * @author Kate Arzamastseva <[email protected]>
983 983
  */
@@ -1143,7 +1143,7 @@  discard block
 block discarded – undo
1143 1143
  * @param string        $image image id
1144 1144
  * @param int           $auth  permission level
1145 1145
  * @param string|int    $rev   revision timestamp, or empty string
1146
- * @param bool|JpegMeta $meta  image object, or create one if false
1146
+ * @param JpegMeta $meta  image object, or create one if false
1147 1147
  */
1148 1148
 function media_details($image, $auth, $rev='', $meta=false) {
1149 1149
     global $lang;
@@ -1746,7 +1746,7 @@  discard block
 block discarded – undo
1746 1746
  * @param string     $amp           separator
1747 1747
  * @param bool       $abs           absolute url?
1748 1748
  * @param bool       $params_array  return the parmeters array?
1749
- * @return string|array - link or link parameters
1749
+ * @return string[] - link or link parameters
1750 1750
  */
1751 1751
 function media_managerURL($params=false, $amp='&amp;', $abs=false, $params_array=false) {
1752 1752
     global $ID;
Please login to merge, or discard this patch.
inc/search.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -382,7 +382,7 @@
 block discarded – undo
382 382
  * @param string $path
383 383
  * @param bool $keeptxt
384 384
  *
385
- * @return mixed|string
385
+ * @return string
386 386
  */
387 387
 function pathID($path,$keeptxt=false){
388 388
     $id = utf8_decodeFN($path);
Please login to merge, or discard this patch.
inc/PluginTrait.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -39,6 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
     /**
41 41
      * @see DokuWiki_PluginInterface::loadHelper()
42
+     * @param string $name
42 43
      */
43 44
     public function loadHelper($name, $msg = true) {
44 45
         $obj = plugin_load('helper', $name);
@@ -86,6 +87,7 @@  discard block
 block discarded – undo
86 87
 
87 88
     /**
88 89
      * @see DokuWiki_PluginInterface::locale_xhtml()
90
+     * @param string $id
89 91
      */
90 92
     public function locale_xhtml($id) {
91 93
         return p_cached_output($this->localFN($id));
Please login to merge, or discard this patch.
inc/template.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -424,7 +424,7 @@
 block discarded – undo
424 424
  * @param string      $id   page id
425 425
  * @param string|null $name the name of the link
426 426
  * @param bool        $return
427
- * @return true|string
427
+ * @return string|boolean
428 428
  */
429 429
 function tpl_pagelink($id, $name = null, $return = false) {
430 430
     $out = '<bdi>'.html_wikilink($id, $name).'</bdi>';
Please login to merge, or discard this patch.
lib/plugins/acl/admin.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -721,6 +721,8 @@
 block discarded – undo
721 721
      *
722 722
      * @author  Frank Schubert <[email protected]>
723 723
      * @author  Andreas Gohr <[email protected]>
724
+     * @param boolean $ispage
725
+     * @param string $name
724 726
      */
725 727
     protected function _html_checkboxes($setperm,$ispage,$name){
726 728
         global $lang;
Please login to merge, or discard this patch.
lib/plugins/config/settings/extra.class.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
          *
175 175
          * @param admin_plugin_config $plugin object of config plugin
176 176
          * @param bool            $echo   true: show inputted value, when error occurred, otherwise the stored setting
177
-         * @return array with content array(string $label_html, string $input_html)
177
+         * @return string[] with content array(string $label_html, string $input_html)
178 178
          */
179 179
         public function html(admin_plugin_config $plugin, $echo=false) {
180 180
             global $lang;
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
          *
283 283
          * @param admin_plugin_config $plugin object of config plugin
284 284
          * @param bool            $echo   true: show inputted value, when error occurred, otherwise the stored setting
285
-         * @return array with content array(string $label_html, string $input_html)
285
+         * @return string[] with content array(string $label_html, string $input_html)
286 286
          */
287 287
         public function html(admin_plugin_config $plugin, $echo=false) {
288 288
 
Please login to merge, or discard this patch.
inc/parser/metadata.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -408,7 +408,7 @@  discard block
 block discarded – undo
408 408
      * keep track of internal links in $this->meta['relation']['references']
409 409
      *
410 410
      * @param string            $id   page ID to link to. eg. 'wiki:syntax'
411
-     * @param string|array|null $name name for the link, array for media file
411
+     * @param string $name name for the link, array for media file
412 412
      */
413 413
     public function internallink($id, $name = null) {
414 414
         global $ID;
@@ -579,7 +579,7 @@  discard block
 block discarded – undo
579 579
      *
580 580
      * @param string $name
581 581
      *
582
-     * @return mixed|string
582
+     * @return string
583 583
      */
584 584
     public function _simpleTitle($name) {
585 585
         global $conf;
Please login to merge, or discard this patch.
inc/Remote/Api.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -332,7 +332,7 @@
 block discarded – undo
332 332
     /**
333 333
      * Transform file to xml
334 334
      *
335
-     * @param mixed $data
335
+     * @param string|boolean $data
336 336
      * @return mixed
337 337
      */
338 338
     public function toFile($data)
Please login to merge, or discard this patch.
lib/plugins/info/syntax.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
      * @param   int          $state   The lexer state for the match
50 50
      * @param   int          $pos     The character position of the matched text
51 51
      * @param   Doku_Handler $handler The Doku_Handler object
52
-     * @return  array Return an array with all data you want to use in render
52
+     * @return  string[] Return an array with all data you want to use in render
53 53
      */
54 54
     public function handle($match, $state, $pos, Doku_Handler $handler)
55 55
     {
Please login to merge, or discard this patch.