mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-01-28 21:31:13 +01:00
15 lines
246 B
PHP
15 lines
246 B
PHP
<?php
|
|
|
|
namespace Aws;
|
|
|
|
use Psr\Http\Message\ResponseInterface;
|
|
|
|
interface ResponseContainerInterface
|
|
{
|
|
/**
|
|
* Get the received HTTP response if any.
|
|
*
|
|
* @return ResponseInterface|null
|
|
*/
|
|
public function getResponse();
|
|
} |