1 | <?php |
||
8 | class ResultSet extends ResultSetBase |
||
9 | { |
||
10 | |||
11 | protected $statement; |
||
12 | |||
13 | /** |
||
14 | * @param PDOStatement $statement |
||
15 | */ |
||
16 | public function __construct(PDOStatement $statement) |
||
23 | |||
24 | /** |
||
25 | * Get the result object returned by PHP's MySQLi |
||
26 | * |
||
27 | * @return \Pdostatement |
||
28 | * |
||
29 | * @codeCoverageIgnore |
||
30 | */ |
||
31 | public function getResultObject() |
||
35 | } |
||
36 |