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