Completed
Push — requireStyleValue ( 76d5da...626992 )
by Andreas
07:39 queued 05:04
created
inc/init.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
  *
9 9
  * @param integer $start
10 10
  *
11
- * @return mixed
11
+ * @return double
12 12
  */
13 13
 function delta_time($start=0) {
14 14
     return microtime(true)-((float)$start);
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/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.
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.
lib/plugins/acl/admin.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -751,6 +751,8 @@
 block discarded – undo
751 751
      *
752 752
      * @author  Frank Schubert <[email protected]>
753 753
      * @author  Andreas Gohr <[email protected]>
754
+     * @param boolean $ispage
755
+     * @param string $name
754 756
      */
755 757
     protected function makeCheckboxes($setperm, $ispage, $name)
756 758
     {
Please login to merge, or discard this patch.
lib/plugins/usermanager/admin.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -1169,6 +1169,7 @@
 block discarded – undo
1169 1169
      *
1170 1170
      * @param array  $user   data of user
1171 1171
      * @param string &$error reference catched error message
1172
+     * @param string $error
1172 1173
      * @return bool whether successful
1173 1174
      */
1174 1175
     protected function importUser($user, &$error)
Please login to merge, or discard this patch.
inc/common.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
  *
195 195
  * @author Andreas Gohr <[email protected]>
196 196
  *
197
- * @return array with info about current document
197
+ * @return string with info about current document
198 198
  */
199 199
 function pageinfo() {
200 200
     global $ID;
@@ -2045,6 +2045,7 @@  discard block
 block discarded – undo
2045 2045
  * Strips source mapping declarations from given text #601
2046 2046
  *
2047 2047
  * @param string &$text reference to the CSS or JavaScript code to clean
2048
+ * @param string $text
2048 2049
  */
2049 2050
 function stripsourcemaps(&$text){
2050 2051
     $text = preg_replace('/^(\/\/|\/\*)[@#]\s+sourceMappingURL=.*?(\*\/)?$/im', '\\1\\2', $text);
Please login to merge, or discard this patch.
inc/Extension/PluginTrait.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -85,6 +85,7 @@
 block discarded – undo
85 85
 
86 86
     /**
87 87
      * @see PluginInterface::getLang()
88
+     * @param string $id
88 89
      */
89 90
     public function getLang($id)
90 91
     {
Please login to merge, or discard this patch.