Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | public function apply(Entry $entry, EventProcessNodeInterface $event): bool |
||
22 | { |
||
23 | /** @var MatchedResult */ |
||
24 | $result = $this->isInPrivateConfiguredEntries($entry, new BooleanMatchNameSpace()); |
||
25 | |||
26 | if ($result->matched()) { |
||
27 | $event->foundError($result->getInfo()); |
||
|
|||
28 | return true; |
||
29 | } |
||
30 | |||
31 | return false; |
||
32 | } |
||
39 |
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.