1 | <?php |
||
7 | abstract class Process implements ProcessInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var OutputInterface |
||
11 | */ |
||
12 | protected $output; |
||
13 | |||
14 | /** |
||
15 | * Process constructor. |
||
16 | * @param OutputInterface $output |
||
17 | */ |
||
18 | public function __construct(OutputInterface $output) |
||
22 | |||
23 | /** |
||
24 | * @return string |
||
25 | */ |
||
26 | protected function getFormattedTime() : string |
||
31 | } |
||
32 |