1 | <?php |
||
17 | class PDOStatement implements StatementInterface |
||
18 | { |
||
19 | /** |
||
20 | * @var \PDOStatement $wrappedStatement |
||
21 | */ |
||
22 | private $wrappedStatement; |
||
23 | |||
24 | /** |
||
25 | * @param \PDOStatement $statement |
||
26 | */ |
||
27 | 2 | public function __construct(\PDOStatement $statement) |
|
31 | |||
32 | /** |
||
33 | * @inheritdoc |
||
34 | */ |
||
35 | public function bindValue($parameter, $value) |
||
41 | |||
42 | /** |
||
43 | * @inheritdoc |
||
44 | */ |
||
45 | public function rowCount() |
||
49 | |||
50 | /** |
||
51 | * @inheritdoc |
||
52 | */ |
||
53 | public function execute() |
||
59 | |||
60 | /** |
||
61 | * @inheritdoc |
||
62 | */ |
||
63 | public function fetch($mode = \PDO::FETCH_ASSOC) |
||
71 | } |