Open jayan-blutui opened 2 days ago
Can confirm this issue too
Same, can confirm this issue too
+1 on this issue, running same versions including v3.x of Algolia client
Came to report the same. 😅
Today I've just had the same issue with my Laravel application, the way I ended up solving the issue is by hardcoding the version of laravel/scout
inside the composer.json
file to 10.11.5
:
"laravel/scout": "10.11.5"
@Eyad-Bereh same here
Description
The latest version of Laravel Scout
v10.11.6
has the following error:Class Algolia\ScoutExtended\Engines\AlgoliaEngine contains 2 abstract methods and must therefore be declared abstract or implement the remaining methods (Laravel\Scout\Engines\AlgoliaEngine::performSearch, Laravel\Scout\Engines\AlgoliaEngine::deleteIndex)
A possible fix for this issue is to use the new class called
Algolia3Engine
which was created in https://github.com/laravel/scout/pull/872 instead of theAlgoliaEngine
which is now an abstract class.Steps To Reproduce
Update to latest version of Laravel Scout.