whitelabel-plugins-update-s.../aws/Aws/ResponseContainerInterface.php
2024-05-13 16:09:03 +05:00

15 lines
No EOL
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();
}