Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
 
3
namespace Aws;
4
 
5
use Psr\Http\Message\ResponseInterface;
6
 
7
interface ResponseContainerInterface
8
{
9
    /**
10
     * Get the received HTTP response if any.
11
     *
12
     * @return ResponseInterface|null
13
     */
14
    public function getResponse();
15
}