Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | public function check($value): bool |
||
20 | { |
||
21 | $this->requireParameters($this->fillableParams); |
||
22 | |||
23 | $anotherValue = $this->validation->getValue($this->parameter('field')); |
||
|
|||
24 | $this->setAllowedValues((array) $anotherValue, 'and'); |
||
25 | |||
26 | if (! is_array($anotherValue)) { |
||
27 | return true; |
||
28 | } |
||
29 | |||
30 | return ! in_array($value, $anotherValue, $this->strict); |
||
31 | } |
||
33 |
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.