Total Complexity | 3 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
10 | class DefaultJob extends ApplicationProvider implements JobContracts |
||
11 | { |
||
12 | /** |
||
13 | * @var null|object |
||
14 | */ |
||
15 | protected $worker; |
||
16 | |||
17 | /** |
||
18 | * DefaultJob constructor. |
||
19 | * |
||
20 | * @param ApplicationContracts $app |
||
21 | * @param WorkerManagerContracts $worker |
||
22 | */ |
||
23 | public function __construct(ApplicationContracts $app,WorkerManagerContracts $worker) |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * @return mixed|void |
||
32 | */ |
||
33 | public function execute() |
||
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.