1 | <?php |
||
17 | class PDOStatement implements StatementInterface |
||
18 | { |
||
19 | /** |
||
20 | * @var \PDOStatement |
||
21 | */ |
||
22 | private $wrappedStatement; |
||
23 | |||
24 | /** |
||
25 | * @param \PDOStatement $stmt |
||
26 | */ |
||
27 | public function __construct(\PDOStatement $stmt) |
||
31 | |||
32 | /** |
||
33 | * @inheritdoc |
||
34 | */ |
||
35 | public function execute() |
||
41 | |||
42 | /** |
||
43 | * @inheritdoc |
||
44 | */ |
||
45 | public function rowCount() |
||
49 | } |