1 | <?php |
||
21 | class CreateCategoryUseCase implements ResponderAwareInterface |
||
22 | { |
||
23 | use ResponderAwareTrait; |
||
24 | |||
25 | /** @var CategoryRepositoryInterface */ |
||
26 | private $categoryRepository; |
||
27 | |||
28 | /** @var CategoryFactoryInterface */ |
||
29 | private $categoryFactory; |
||
30 | |||
31 | /** @var TreeManager */ |
||
32 | private $treeManager; |
||
33 | |||
34 | /** |
||
35 | * CreateCategoryUseCase constructor. |
||
36 | * |
||
37 | * @param CategoryRepositoryInterface $categoryRepository |
||
38 | * @param CategoryFactoryInterface $categoryFactory |
||
39 | * @param TreeManager $treeManager |
||
40 | */ |
||
41 | public function __construct( |
||
50 | |||
51 | /** |
||
52 | * @param CreateCategoryRequest $request |
||
53 | */ |
||
54 | public function execute(CreateCategoryRequest $request) |
||
63 | |||
64 | private function categoryCreated() |
||
71 | } |
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.