8 lines
114 B
PHP
8 lines
114 B
PHP
|
|
<?php declare(strict_types=1);
|
||
|
|
|
||
|
|
return [
|
||
|
|
'hosts' => [
|
||
|
|
env('ELASTIC_HOST', 'localhost:9200'),
|
||
|
|
]
|
||
|
|
];
|