1 | <?php |
||
19 | class EditCategoryUseCase implements ResponderAwareInterface |
||
20 | { |
||
21 | use ResponderAwareTrait; |
||
22 | |||
23 | /** @var CategoryRepositoryInterface */ |
||
24 | private $categoryRepository; |
||
25 | |||
26 | /** |
||
27 | * EditCategoryUseCase constructor. |
||
28 | * |
||
29 | * @param CategoryRepositoryInterface $categoryRepository |
||
30 | */ |
||
31 | public function __construct(CategoryRepositoryInterface $categoryRepository) |
||
35 | |||
36 | /** |
||
37 | * @param EditCategoryRequest $request |
||
38 | */ |
||
39 | public function execute(EditCategoryRequest $request) |
||
48 | |||
49 | private function categoryUpdated() |
||
56 | |||
57 | } |
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.