mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-12 11:11:31 +00:00
The official image from streamline does not currently work for the arm64 platform. As a temporary measure, the source code and docker build scripts have been lifted from the official images and are used to build locally. Some additional modifications are made to reduce overall image size, these are documented in docker/README.md
21 lines
500 B
PHP
21 lines
500 B
PHP
<?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;
|
|
}
|