1 | <?php |
||
9 | class CheckJobHealthTask extends BuildTask |
||
10 | { |
||
11 | /** |
||
12 | * {@inheritDoc} |
||
13 | * @var string |
||
14 | */ |
||
15 | private static $segment = 'CheckJobHealthTask'; |
||
|
|||
16 | |||
17 | /** |
||
18 | * {@inheritDoc} |
||
19 | * @return string |
||
20 | */ |
||
21 | public function getDescription() |
||
29 | |||
30 | /** |
||
31 | * Implement this method in the task subclass to |
||
32 | * execute via the TaskRunner |
||
33 | * |
||
34 | * @param HTTPRequest $request |
||
35 | * @return |
||
36 | */ |
||
37 | public function run($request) |
||
46 | |||
47 | protected function getService() |
||
51 | } |
||
52 |