Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 11 |
Ratio | 100 % |
Changes | 0 |
1 | <?php declare(strict_types = 1); |
||
43 | View Code Duplication | public function or($expression) |
|
44 | { |
||
45 | $this->prepareOperator('$or'); |
||
46 | |||
47 | $this->queryPartial['$or'] = array_merge( |
||
48 | $this->queryPartial['$or'], |
||
49 | $this->mapExpressions(...func_get_args()) |
||
50 | ); |
||
51 | |||
52 | return $this; |
||
53 | } |
||
54 | |||
88 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.