protected function configure()
 {
     // Test search without analyser filters and stopwords.
     Config::set('laravel-lucene-search.analyzer.filters', []);
     Config::set('laravel-lucene-search.analyzer.stopwords', []);
     parent::configure();
 }
 protected function configure()
 {
     parent::configure();
     Config::set('laravel-lucene-search.index.models', ['tests\\models\\Product' => ['fields' => ['name', 'description'], 'optional_attributes' => ['accessor' => 'custom_optional_attributes'], 'boost' => ['accessor' => 'custom_boost']]]);
 }
Пример #3
0
 protected function configure()
 {
     parent::configure();
 }