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