File manager - Edit - /var/www/payraty/helpdesk/vendor/matchish/laravel-scout-elasticsearch/src/ElasticSearchServiceProvider.php
Back
<?php declare(strict_types=1); namespace Matchish\ScoutElasticSearch; use Elastic\Elasticsearch\Client; use Elastic\Elasticsearch\ClientBuilder; use Illuminate\Support\ServiceProvider; use Matchish\ScoutElasticSearch\ElasticSearch\Config\Config; use Matchish\ScoutElasticSearch\ElasticSearch\EloquentHitsIteratorAggregate; use Matchish\ScoutElasticSearch\ElasticSearch\HitsIteratorAggregate; final class ElasticSearchServiceProvider extends ServiceProvider { /** * {@inheritdoc} */ public function register(): void { $this->mergeConfigFrom(__DIR__.'/../config/elasticsearch.php', 'elasticsearch'); $this->app->bind(Client::class, function () { $clientBuilder = ClientBuilder::create() ->setHosts(Config::hosts()) ->setSSLVerification(Config::sslVerification()); if ($user = Config::user()) { $clientBuilder->setBasicAuthentication($user, Config::password()); } if ($cloudId = Config::elasticCloudId()) { $clientBuilder->setElasticCloudId($cloudId) ->setApiKey(Config::apiKey()); } return $clientBuilder->build(); }); $this->app->bind( HitsIteratorAggregate::class, EloquentHitsIteratorAggregate::class ); } /** * {@inheritdoc} */ public function boot(): void { $this->publishes([ __DIR__.'/../config/elasticsearch.php' => config_path('elasticsearch.php'), ], 'config'); } /** * {@inheritdoc} */ public function provides(): array { return [Client::class]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings