Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | class NullStatementFilter implements StatementFilter { |
||
19 | |||
20 | /** |
||
21 | * @since 3.3 |
||
22 | */ |
||
23 | public const FILTER_TYPE = 'null'; |
||
24 | |||
25 | 1 | /** |
|
26 | 1 | * @see StatementFilter::statementMatches |
|
27 | * |
||
28 | * @param Statement $statement |
||
29 | * |
||
30 | * @return bool |
||
31 | */ |
||
32 | public function statementMatches( Statement $statement ) { |
||
37 |