Fix bin/publish: use correct .env path for rspade_system Fix bin/publish script: prevent grep exit code 1 from terminating script 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
21 lines
500 B
PHP
Executable File
21 lines
500 B
PHP
Executable File
<?php
|
|
|
|
namespace Psr\Http\Client;
|
|
|
|
use Psr\Http\Message\RequestInterface;
|
|
use Psr\Http\Message\ResponseInterface;
|
|
|
|
interface ClientInterface
|
|
{
|
|
/**
|
|
* Sends a PSR-7 request and returns a PSR-7 response.
|
|
*
|
|
* @param RequestInterface $request
|
|
*
|
|
* @return ResponseInterface
|
|
*
|
|
* @throws \Psr\Http\Client\ClientExceptionInterface If an error happens while processing the request.
|
|
*/
|
|
public function sendRequest(RequestInterface $request): ResponseInterface;
|
|
}
|