We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a07ce9d commit b6baa4fCopy full SHA for b6baa4f
src/AsyncClient.php
@@ -142,7 +142,7 @@ public function user(string $user): PromiseInterface
142
});
143
}
144
145
- public function stream(): AsyncStreamingClient
+ public function stream(): AsyncStreamingClientInterface
146
{
147
if (!($this->streamingClient instanceof AsyncStreamingClient)) {
148
$this->streamingClient = new AsyncStreamingClient($this->client);
src/AsyncClientInterface.php
@@ -17,5 +17,5 @@ public function profile(): PromiseInterface;
17
18
public function user(string $user): PromiseInterface;
19
20
- public function stream(): AsyncStreamingClient;
+ public function stream(): AsyncStreamingClientInterface;
21
0 commit comments