ERROR: UndefinedClass - src/Service/Http/StripeHttplugClient.php:36:16 - Class or interface GuzzleHttp\Psr7\UriInterface does not exist
$uri = Psr7\uri_for($absUrl)->withQuery(http_build_query($params, '', '&', PHP_QUERY_RFC3986));
Not sure why is psalm trying to locate GuzzleHttp\Psr7\UriInterface. functions.php file where uri_for function is located refers to Psr\Http\Message\UriInterface
Not sure why is psalm trying to locate
GuzzleHttp\Psr7\UriInterface
.functions.php
file whereuri_for
function is located refers toPsr\Http\Message\UriInterface
Here's the function Psalm complains about https://github.com/guzzle/psr7/blob/99bfec281379c040f37dc3c3e9312476875a2f62/src/functions.php#L54