Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 11 |
Ratio | 100 % |
Changes | 0 |
1 | <?php declare(strict_types = 1); |
||
26 | View Code Duplication | public function and($expression) |
|
27 | { |
||
28 | $this->prepareOperator('$and'); |
||
29 | |||
30 | $this->filters['$and'] = array_merge( |
||
31 | $this->filters['$and'], |
||
32 | $this->mapExpressions(...func_get_args()) |
||
33 | ); |
||
34 | |||
35 | return $this; |
||
36 | } |
||
37 | |||
88 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.