Total Complexity | 2 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
32 | class FlagEntriesTask extends AbstractTask |
||
33 | { |
||
34 | protected ?FeatureFlagService $featureFlagService = null; |
||
35 | |||
36 | public function injectFeatureFlagService(FeatureFlagService $featureFlagService): void |
||
37 | { |
||
38 | $this->featureFlagService = $featureFlagService; |
||
39 | } |
||
40 | |||
41 | public function execute(): bool |
||
45 | } |
||
46 | } |
||
47 |
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.