1 | <?php declare(strict_types=1); |
||
9 | class BuildSyncFromAsyncHandler |
||
10 | { |
||
11 | /** |
||
12 | * @var Hydrator |
||
13 | */ |
||
14 | private $hydrator; |
||
15 | |||
16 | /** |
||
17 | * ExtractHandler constructor. |
||
18 | * @param Hydrator $hydrator |
||
19 | */ |
||
20 | public function __construct(Hydrator $hydrator) |
||
24 | |||
25 | public function handle(BuildSyncFromAsyncCommand $command): ResourceInterface |
||
32 | } |
||
33 |
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.