1 | <?php |
||
8 | class CronMasterConfigDto |
||
9 | { |
||
10 | /** @var PlatformCronHistoryModelInterface */ |
||
11 | public $cron_history_model; |
||
12 | /** @var HealthCheckPingServiceInterface */ |
||
13 | public $health_check_ping_service; |
||
14 | /** @var string */ |
||
15 | public $file_lock_prefix; |
||
16 | /** @var string */ |
||
17 | public $project_name; |
||
18 | /** @var array */ |
||
19 | public $working_classes; |
||
20 | /** @var bool */ |
||
21 | public $is_under_dev = true; |
||
22 | |||
23 | /** |
||
24 | * CronMaster constructor. |
||
25 | * |
||
26 | * @param PlatformCronHistoryModelInterface $cron_history_model |
||
27 | * @param HealthCheckPingServiceInterface $health_check_ping_service |
||
28 | * @param string $file_lock_prefix |
||
29 | * @param string $project_name |
||
30 | * @param array $working_classes |
||
31 | * @param bool $is_under_dev |
||
32 | * |
||
33 | * @return CronMasterConfigDto |
||
34 | */ |
||
35 | public static function importFromInit( |
||
55 | } |
||
56 |