Completed
Push — betterCoreSearch ( b3cfe8...940f24 )
by Michael
05:19
created
inc/parser/metadata.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -423,7 +423,7 @@  discard block
 block discarded – undo
423 423
      * keep track of internal links in $this->meta['relation']['references']
424 424
      *
425 425
      * @param string            $id   page ID to link to. eg. 'wiki:syntax'
426
-     * @param string|array|null $name name for the link, array for media file
426
+     * @param string $name name for the link, array for media file
427 427
      */
428 428
     function internallink($id, $name = null) {
429 429
         global $ID;
@@ -594,7 +594,7 @@  discard block
 block discarded – undo
594 594
      *
595 595
      * @param string $name
596 596
      *
597
-     * @return mixed|string
597
+     * @return string
598 598
      */
599 599
     function _simpleTitle($name) {
600 600
         global $conf;
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.
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
         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
         function html(admin_plugin_config $plugin, $echo=false) {
288 288
 
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/Ui/Search.php 1 patch
Doc Comments   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@  discard block
 block discarded – undo
15 15
     /**
16 16
      * Search constructor.
17 17
      *
18
-     * @param string $query the search query
19 18
      */
20 19
     public function __construct()
21 20
     {
@@ -211,6 +210,11 @@  discard block
 block discarded – undo
211 210
         $searchForm->addTagClose('div');
212 211
     }
213 212
 
213
+    /**
214
+     * @param string $label
215
+     * @param false|string $after
216
+     * @param boolean $before
217
+     */
214 218
     protected function addSearchLink(
215 219
         Form $searchForm,
216 220
         $label,
@@ -549,7 +553,7 @@  discard block
 block discarded – undo
549 553
      *
550 554
      * @param bool|string $ns the namespace to which to restrict the query
551 555
      *
552
-     * @return bool|string
556
+     * @return false|string
553 557
      */
554 558
     protected function restrictQueryToNSLink($ns)
555 559
     {
Please login to merge, or discard this patch.