1 | <?php |
||
5 | class BooleanComparison extends AbstractComparison |
||
6 | { |
||
7 | /** |
||
8 | * @param bool $expected |
||
9 | * @param bool $value |
||
10 | * |
||
11 | * @return bool |
||
12 | */ |
||
13 | 2 | public function boolAnd($expected, $value) |
|
17 | |||
18 | /** |
||
19 | * @param bool $expected |
||
20 | * @param bool $value |
||
21 | * |
||
22 | * @return bool |
||
23 | */ |
||
24 | 1 | public function boolOr($expected, $value) |
|
28 | |||
29 | /** |
||
30 | * @param mixed $expected |
||
31 | * @param mixed $value |
||
32 | */ |
||
33 | 1 | public function isNull($expected, $value) |
|
37 | |||
38 | /** |
||
39 | * @param mixed $expected |
||
40 | * @param mixed $value |
||
41 | */ |
||
42 | 1 | public function isNotNull($expected, $value) { |
|
45 | } |
||
46 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.