| 1 | <?php |
||
| 13 | class Provider |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * Instance of the API RequestInterface |
||
| 17 | * |
||
| 18 | * @var RequestInterface |
||
| 19 | */ |
||
| 20 | protected $request; |
||
| 21 | protected $response; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param RequestInterface $request |
||
| 25 | * @param ResponseInterface $response |
||
| 26 | */ |
||
| 27 | public function __construct(RequestInterface $request, ResponseInterface $response) |
||
| 32 | |||
| 33 | } |