1 | <?php |
||
17 | class NullStatement implements StatementInterface |
||
18 | { |
||
19 | /** |
||
20 | * @inheritdoc |
||
21 | */ |
||
22 | public function bindValue($parameter, $value) |
||
26 | |||
27 | /** |
||
28 | * @inheritdoc |
||
29 | */ |
||
30 | public function fetch($mode = \PDO::FETCH_ASSOC) |
||
31 | { |
||
32 | return null; |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * @inheritdoc |
||
37 | */ |
||
38 | public function execute() |
||
42 | |||
43 | /** |
||
44 | * @inheritdoc |
||
45 | */ |
||
46 | public function rowCount() |
||
50 | } |