production/vendor/aws/aws-sdk-php/src/ResponseContainerInterface.php
2025-12-01 16:12:12 +00:00

15 lines
246 B
PHP
Executable File

<?php
namespace Aws;
use Psr\Http\Message\ResponseInterface;
interface ResponseContainerInterface
{
/**
* Get the received HTTP response if any.
*
* @return ResponseInterface|null
*/
public function getResponse();
}