summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/ResponseContainerInterface.php
blob: d26921bb8546c017bd9db51a70076053cdd2fe88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

namespace Aws;

use Psr\Http\Message\ResponseInterface;

interface ResponseContainerInterface
{
    /**
     * Get the received HTTP response if any.
     *
     * @return ResponseInterface|null
     */
    public function getResponse();
}