Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | 1 | protected function getNormalizedValue(string $value) |
|
28 | { |
||
29 | 1 | $value = $this->stringNormalizer->normalize($value); |
|
30 | 1 | $normalizedValue = \explode($this->delimiter, $value); |
|
31 | |||
32 | 1 | foreach ($normalizedValue as &$part) { |
|
33 | 1 | $part = $this->normalizer->normalize($part); |
|
|
|||
34 | } |
||
35 | |||
36 | 1 | return $normalizedValue; |
|
37 | } |
||
51 |
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.