1 | <?php |
||
4 | class Statement{ |
||
5 | /** |
||
6 | * @var Connection |
||
7 | */ |
||
8 | protected $_connection; |
||
9 | |||
10 | /** |
||
11 | * |
||
12 | * @var int |
||
13 | */ |
||
14 | protected $_streamId; |
||
15 | |||
16 | /** |
||
17 | * |
||
18 | * @var Response\Response |
||
19 | */ |
||
20 | protected $_response; |
||
21 | |||
22 | public function __construct($connection, $streamId){ |
||
26 | |||
27 | /** |
||
28 | * |
||
29 | * @throws Response\Exception |
||
30 | * @return Response\Response |
||
31 | */ |
||
32 | public function getResponse(){ |
||
42 | |||
43 | /** |
||
44 | * |
||
45 | * @param Response\Response $response |
||
46 | */ |
||
47 | public function setResponse($response){ |
||
50 | } |
||
51 |