Failed Conditions
Pull Request — master (#2943)
by
unknown
02:52
created
inc/fulltext.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -83,6 +83,9 @@  discard block
 block discarded – undo
83 83
     dbg_deprecated('ft_resultComplement');
84 84
     return FulltextSearch::resultComplement($args);
85 85
 }
86
+/**
87
+ * @param Doku_Indexer $Indexer
88
+ */
86 89
 function ft_queryParser($Indexer, $query) {
87 90
     dbg_deprecated('ft_queryParser');
88 91
     return FulltextSearch::queryParser($Indexer, $query);
@@ -106,6 +109,9 @@  discard block
 block discarded – undo
106 109
     return MetaSearch::backlinks($id, $ignore_perms);
107 110
 }
108 111
 
112
+/**
113
+ * @param string $id
114
+ */
109 115
 function ft_mediause($id, $ignore_perms = false) {
110 116
     dbg_deprecated('ft_mediause');
111 117
     return MetaSearch::mediause($id, $ignore_perms);
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
@@ -390,7 +390,7 @@
 block discarded – undo
390 390
  * @param string $path
391 391
  * @param bool $keeptxt
392 392
  *
393
- * @return mixed|string
393
+ * @return string
394 394
  */
395 395
 function pathID($path, $keeptxt=false)
396 396
 {
Please login to merge, or discard this patch.
inc/Search/FulltextSearch.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -360,7 +360,7 @@
 block discarded – undo
360 360
      *
361 361
      * @param string $id page id
362 362
      * @param array $highlight
363
-     * @return mixed
363
+     * @return string
364 364
      */
365 365
     public static function snippet($id, $highlight)
366 366
     {
Please login to merge, or discard this patch.
inc/Search/Indexer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
      * @author Tom N Harris <[email protected]>
101 101
      * @author Michael Hamann <[email protected]>
102 102
      *
103
-     * @return int|string
103
+     * @return string
104 104
      */
105 105
     public function getVersion()
106 106
     {
Please login to merge, or discard this patch.