]> BookStack Code Mirror - bookstack/blobdiff - app/Http/Controllers/SearchController.php
Started on a live-preview on global search input
[bookstack] / app / Http / Controllers / SearchController.php
index 4a002298cebb617de9eb0c34dd23cde56f920d44..8fcde4a6da7dc34f74a30364c1082711ca624da6 100644 (file)
@@ -3,15 +3,15 @@
 namespace BookStack\Http\Controllers;
 
 use BookStack\Entities\Queries\Popular;
-use BookStack\Entities\Tools\SearchOptions;
-use BookStack\Entities\Tools\SearchResultsFormatter;
-use BookStack\Entities\Tools\SearchRunner;
 use BookStack\Entities\Tools\SiblingFetcher;
+use BookStack\Search\SearchOptions;
+use BookStack\Search\SearchResultsFormatter;
+use BookStack\Search\SearchRunner;
 use Illuminate\Http\Request;
 
 class SearchController extends Controller
 {
-    protected $searchRunner;
+    protected SearchRunner $searchRunner;
 
     public function __construct(SearchRunner $searchRunner)
     {