| 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 | 4 | public function __construct(\PDOStatement $statement) | |
| 31 | |||
| 32 | /** | ||
| 33 | * @inheritdoc | ||
| 34 | */ | ||
| 35 | 3 | public function bindValue($parameter, $value) | |
| 41 | |||
| 42 | /** | ||
| 43 | * @inheritdoc | ||
| 44 | */ | ||
| 45 | 4 | public function rowCount() | |
| 49 | |||
| 50 | /** | ||
| 51 | * @inheritdoc | ||
| 52 | */ | ||
| 53 | 4 | public function execute() | |
| 59 | |||
| 60 | /** | ||
| 61 | * @inheritdoc | ||
| 62 | */ | ||
| 63 | 3 | public function fetchScalar() | |
| 71 | } |