1 | <?php |
||
18 | class NullConnection implements ConnectionInterface |
||
19 | { |
||
20 | /** |
||
21 | * @inheritdoc |
||
22 | */ |
||
23 | public function prepareStatement($SQL, $parameters = []) |
||
27 | |||
28 | /** |
||
29 | * @inheritdoc |
||
30 | */ |
||
31 | public function fetchScalar($SQL, array $parameters = []) |
||
35 | |||
36 | /** |
||
37 | * @inheritdoc |
||
38 | */ |
||
39 | public function fetchRow($SQL, array $parameters = []) |
||
43 | |||
44 | /** |
||
45 | * @inheritdoc |
||
46 | */ |
||
47 | public function fetchAll($SQL, array $parameters = []) |
||
51 | |||
52 | /** |
||
53 | * @inheritdoc |
||
54 | */ |
||
55 | public function rowCount($SQL, array $parameters = []) |
||
59 | |||
60 | /** |
||
61 | * @inheritdoc |
||
62 | */ |
||
63 | public function execute($SQL, array $parameters = []) |
||
67 | } |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.