- Algolia Client Version: 3.4.0, 3.4.1
Description
composer./json states that either versions 1 or 2 of psr http-message are compliant :
"psr/http-message": "^1.0 || ^2.0",
In class Algolia\AlgoliaSearch\Http\Psr7\Uri the method withScheme has the following signature :
|
public function withScheme(string $scheme): UriInterface |
which is not correct implementation of version 1 of psr/http-message related interface:
public function withScheme(string $scheme);
Experienced by using "drupal/search_api_algolia": "^3.0@beta", had to downgrade algolia/algoliasearch-client-php to 3.3.2 fo fix.
Description
composer./json states that either versions 1 or 2 of psr http-message are compliant :
In class
Algolia\AlgoliaSearch\Http\Psr7\Urithe methodwithSchemehas the following signature :algoliasearch-client-php/src/Http/Psr7/Uri.php
Line 439 in df4508d
which is not correct implementation of version 1 of psr/http-message related interface:
Experienced by using
"drupal/search_api_algolia": "^3.0@beta", had to downgrade algolia/algoliasearch-client-php to 3.3.2 fo fix.