Merge "Type hint against LinkTarget in WatchedItemStore"
[lhc/web/wiklou.git] / includes / widget / search / SearchResultWidget.php
index 3fbdbef..e001395 100644 (file)
@@ -10,9 +10,8 @@ use SearchResult;
 interface SearchResultWidget {
        /**
         * @param SearchResult $result The result to render
-        * @param string $terms Terms to be highlighted (@see SearchResult::getTextSnippet)
         * @param int $position The zero indexed result position, including offset
         * @return string HTML
         */
-       public function render( SearchResult $result, $terms, $position );
+       public function render( SearchResult $result, $position );
 }