OpenXE/vendor/aws/aws-sdk-php/src/ResponseContainerInterface.php

15 lines
246 B
PHP
Raw Normal View History

2021-05-21 08:49:41 +02:00
<?php
namespace Aws;
use Psr\Http\Message\ResponseInterface;
interface ResponseContainerInterface
{
/**
* Get the received HTTP response if any.
*
* @return ResponseInterface|null
*/
public function getResponse();
}