| 1 | <?php |
||
| 10 | class AbstractCommand extends Command |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var float |
||
| 14 | */ |
||
| 15 | protected $startTime; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var Application |
||
| 19 | */ |
||
| 20 | protected $console; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var InputInterface |
||
| 24 | */ |
||
| 25 | protected $input; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var OutputInterface |
||
| 29 | */ |
||
| 30 | protected $output; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * |
||
| 34 | */ |
||
| 35 | public function __construct(Application $console) |
||
| 43 | |||
| 44 | /** |
||
| 45 | * |
||
| 46 | */ |
||
| 47 | protected function printProfilerOutput() |
||
| 60 | } |
||
| 61 |