From b7e4bc8e20068694180718bb79c86111444bba2b Mon Sep 17 00:00:00 2001 From: pushrbx Date: Tue, 21 Jun 2022 20:55:36 +0100 Subject: [PATCH] fixed typo --- bootstrap/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/app.php b/bootstrap/app.php index a172f81..2d92b35 100755 --- a/bootstrap/app.php +++ b/bootstrap/app.php @@ -151,7 +151,7 @@ $app->instance('SerializerV4', SerializerFactory::createV4()); $app->register(Laravel\Scout\ScoutServiceProvider::class); // we support TypeSense and ElasticSearch as search indexes. -if (env("SCOUT_DRIVER") === "typsense") { +if (env("SCOUT_DRIVER") === "typesense") { // in this case the TYPESENSE_HOST env var should be set too $app->register(Typesense\LaravelTypesense\TypesenseServiceProvider::class); }