From 37ee2ee8703197276aee91b9c7d9a65083bc1dec Mon Sep 17 00:00:00 2001 From: Tomas Date: Mon, 2 Sep 2024 21:38:11 +0300 Subject: [PATCH] Fix CS --- src/Client.php | 2 +- src/Http/Client.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Client.php b/src/Client.php index 9eda1bcc..9312875e 100644 --- a/src/Client.php +++ b/src/Client.php @@ -44,7 +44,7 @@ public function __construct( ?ClientInterface $httpClient = null, ?RequestFactoryInterface $requestFactory = null, array $clientAgents = [], - ?StreamFactoryInterface $streamFactory = null + ?StreamFactoryInterface $streamFactory = null, ) { $this->http = new MeilisearchClientAdapter($url, $apiKey, $httpClient, $requestFactory, $clientAgents, $streamFactory); $this->index = new Indexes($this->http); diff --git a/src/Http/Client.php b/src/Http/Client.php index 529c90c4..9fa71ff8 100644 --- a/src/Http/Client.php +++ b/src/Http/Client.php @@ -41,7 +41,7 @@ public function __construct( ?ClientInterface $httpClient = null, ?RequestFactoryInterface $reqFactory = null, array $clientAgents = [], - ?StreamFactoryInterface $streamFactory = null + ?StreamFactoryInterface $streamFactory = null, ) { $this->baseUrl = $url; $this->http = $httpClient ?? Psr18ClientDiscovery::find();