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 | 1 | public function __construct(\PDOStatement $statement) |
|
31 | |||
32 | /** |
||
33 | * @inheritdoc |
||
34 | */ |
||
35 | 1 | public function bindValue($parameter, $value) |
|
41 | |||
42 | /** |
||
43 | * @inheritdoc |
||
44 | */ |
||
45 | 1 | public function execute() |
|
51 | |||
52 | /** |
||
53 | * @inheritdoc |
||
54 | */ |
||
55 | 1 | public function fetchScalar() |
|
59 | } |