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