Total Complexity | 6 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
8 | abstract class AbstractValueObjectObserverManager implements ValueObjectObserverManagerInterface |
||
9 | { |
||
10 | protected SplObjectStorage $observers; |
||
11 | protected array $notifying = []; |
||
12 | |||
13 | public function detachAll(): void |
||
17 | } |
||
18 | } |
||
19 | |||
20 | public function getObservers(): SplObjectStorage |
||
23 | } |
||
24 | |||
25 | public function notify(string $event): void |
||
41 |
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.