Liste 2 Ausbesserungen

This commit is contained in:
Arno Kaimbacher 2018-11-08 17:47:27 +01:00
parent 3b005f4555
commit 0e88d76bdc
11 changed files with 246 additions and 139 deletions

View file

@ -17,13 +17,13 @@ class SolariumServiceProvider extends ServiceProvider
*/
public function register()
{
$this->app->bind(Client::class, function ($app) {
$this->app->bind(Client::class, function ($app) {
// $config = config('solarium');
$config = array(
'endpoint' => array(
'localhost' => array(
'host' => '127.0.0.1',
'port' => '8983',
'host' => '127.0.0.1',
'port' => '8983',
'path' => '/solr/',
'core' => 'opus4'
)
@ -39,5 +39,4 @@ class SolariumServiceProvider extends ServiceProvider
{
return [Client::class];
}
}