jenkins-bot has submitted this change and it was merged. Change subject: Add missing use statement ......................................................................
Add missing use statement A missing use statement for InterwikiResolver causes this to fatal out. Add it so things work. Change-Id: I50c3a2ec56e5c3b118a09d8033b4b6f370c97e83 --- M includes/CirrusSearch.php 1 file changed, 1 insertion(+), 0 deletions(-) Approvals: Smalyshev: Looks good to me, approved Cindy-the-browser-test-bot: Looks good to me, but someone else must approve jenkins-bot: Verified diff --git a/includes/CirrusSearch.php b/includes/CirrusSearch.php index 7c3cfba..2717105 100644 --- a/includes/CirrusSearch.php +++ b/includes/CirrusSearch.php @@ -3,6 +3,7 @@ use CirrusSearch\Connection; use CirrusSearch\ElasticsearchIntermediary; use CirrusSearch\InterwikiSearcher; +use CirrusSearch\InterwikiResolver; use CirrusSearch\Search\FullTextResultsType; use CirrusSearch\Searcher; use CirrusSearch\CompletionSuggester; -- To view, visit https://gerrit.wikimedia.org/r/325445 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I50c3a2ec56e5c3b118a09d8033b4b6f370c97e83 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/CirrusSearch Gerrit-Branch: master Gerrit-Owner: EBernhardson <[email protected]> Gerrit-Reviewer: Cindy-the-browser-test-bot <[email protected]> Gerrit-Reviewer: DCausse <[email protected]> Gerrit-Reviewer: Gehel <[email protected]> Gerrit-Reviewer: Manybubbles <[email protected]> Gerrit-Reviewer: Smalyshev <[email protected]> Gerrit-Reviewer: Tjones <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
