Total Complexity | 7 |
Total Lines | 62 |
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() |
||
38 | } |
||
39 | } |
||
40 | |||
41 | /** |
||
42 | * @return mixed|void |
||
43 | */ |
||
44 | public function start() |
||
46 | // TODO: Implement start() method. |
||
47 | } |
||
48 | |||
49 | /** |
||
50 | * @return mixed|void |
||
51 | */ |
||
52 | public function stop() |
||
54 | // TODO: Implement stop() method. |
||
55 | } |
||
56 | |||
57 | /** |
||
58 | * @return mixed|void |
||
59 | */ |
||
60 | public function status() |
||
62 | // TODO: Implement status() method. |
||
63 | } |
||
64 | |||
65 | /** |
||
66 | * cleans worker |
||
67 | * |
||
68 | * @return mixed|void |
||
69 | */ |
||
70 | public function clear() |
||
74 | } |
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.