1 | <?php |
||
9 | class ShellJob extends BaseShellJob |
||
10 | { |
||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | private $id; |
||
15 | |||
16 | /** |
||
17 | * @param string $id |
||
18 | * @param string $command |
||
19 | * @param ScheduleInterface $schedule |
||
20 | */ |
||
21 | public function __construct($id, $command, ScheduleInterface $schedule) |
||
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | public function getId() |
||
35 | |||
36 | /** |
||
37 | * @return ReportInterface |
||
38 | */ |
||
39 | public function getReport() |
||
47 | } |
||
48 |