1 | <?php |
||
18 | class ChildRuntimeTask extends Task |
||
19 | { |
||
20 | /** |
||
21 | * @var \yii\console\Application|\yii\web\Application for configure environment. |
||
22 | */ |
||
23 | public $app; |
||
24 | |||
25 | /** |
||
26 | * @var \Spatie\Async\Task|Task|callable task need to run. |
||
27 | */ |
||
28 | public $callable; |
||
29 | |||
30 | /** |
||
31 | * @inheritDoc |
||
32 | */ |
||
33 | public function configure(): void |
||
37 | |||
38 | /** |
||
39 | * @inheritDoc |
||
40 | */ |
||
41 | public function run() |
||
45 | |||
46 | } |
||
47 |