| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 39 | public function check($value): bool |
||
| 40 | { |
||
| 41 | 2 | $this->requireParameters($this->fillableParams); |
|
| 42 | |||
| 43 | 2 | $anotherValue = $this->validation->getValue($this->parameter('field')); |
|
|
|
|||
| 44 | 2 | $this->setAllowedValues((array) $anotherValue, 'or'); |
|
| 45 | |||
| 46 | if (! is_array($anotherValue)) { |
||
| 47 | 2 | return false; |
|
| 48 | } |
||
| 49 | |||
| 50 | 2 | return in_array($value, $anotherValue, $this->strict); |
|
| 51 | } |
||
| 53 |
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.