bookinventory/app/Services/Search/BookConfigurator.php
Tyler 9daa8a6667
All checks were successful
continuous-integration/drone/push Build is passing
Rollback PHP to 7.4
2020-12-27 02:53:41 -05:00

14 lines
384 B
PHP

<?php
namespace App\Services\Search;
use ScoutElastic\IndexConfigurator;
class BookConfigurator extends IndexConfigurator
{
// It's not obligatory to determine name. By default it'll be a snaked class name without `IndexConfigurator` part.
protected $name = 'books';
// You can specify any settings you want, for example, analyzers.
protected $settings = [
];
}