1 | <?php |
||
19 | class PDOStatement implements StatementInterface |
||
20 | { |
||
21 | /** |
||
22 | * @var \PDOStatement |
||
23 | */ |
||
24 | private $wrappedStatement; |
||
25 | |||
26 | /** |
||
27 | * @param \PDOStatement $stmt |
||
28 | */ |
||
29 | 3 | public function __construct(\PDOStatement $stmt) |
|
33 | |||
34 | /** |
||
35 | * @return \PDOStatement |
||
36 | */ |
||
37 | 1 | public function getWrappedStatement() |
|
41 | |||
42 | /** |
||
43 | * @inheritdoc |
||
44 | */ |
||
45 | public function bindParameter(QueryParameterInterface $parameter) |
||
51 | |||
52 | /** |
||
53 | * @param QueryParameterInterface[] $parameters |
||
54 | * |
||
55 | * @return $this |
||
56 | */ |
||
57 | public function bindParameters($parameters) |
||
65 | |||
66 | /** |
||
67 | * @inheritdoc |
||
68 | */ |
||
69 | public function bindValue($name, $value) |
||
75 | |||
76 | /** |
||
77 | * @inheritdoc |
||
78 | */ |
||
79 | 1 | public function execute() |
|
85 | |||
86 | /** |
||
87 | * @inheritdoc |
||
88 | */ |
||
89 | 1 | public function rowCount() |
|
93 | } |