Skip to content

Commit

Permalink
improve FetchClientInterface comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tyiuhc committed Dec 30, 2023
1 parent c888204 commit 4d5ab89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Http/FetchClientInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
interface FetchClientInterface
{
/**
* return a Psr Client
* Return the underlying PSR HTTP Client
*/
public function getClient(): ClientInterface;
/**
* return a Psr Request to be sent by the client
* Return a PSR Request to be sent by the underlying PSR HTTP Client
*/
public function createRequest(string $method, string $uri, ?string $body = null) : RequestInterface;
}

0 comments on commit 4d5ab89

Please sign in to comment.