| Total Complexity | 4 |
| Total Lines | 47 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | class BetweenOperator extends BaseOperator |
||
| 20 | {
|
||
| 21 | /** |
||
| 22 | * @var Operator |
||
| 23 | */ |
||
| 24 | public $operandA; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var Operator |
||
| 28 | */ |
||
| 29 | public $operandB; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var Operator |
||
| 33 | */ |
||
| 34 | public $operandC; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @inheritDoc |
||
| 38 | */ |
||
| 39 | public function configure(array $config) |
||
| 54 | } |
||
| 55 | |||
| 56 | /** |
||
| 57 | * @inheritDoc |
||
| 58 | */ |
||
| 59 | public function evaluate(ValueParser $value) |
||
| 66 | } |
||
| 67 | } |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.