Files
faveo/vendor/aws/aws-sdk-php/src/ResponseContainerInterface.php
RafficMohammed da241bacb6 updated-packages
2023-01-08 00:13:22 +05:30

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();
}