| 1 | <?php  | 
            ||
| 9 | class Console implements OutputPrinterInterface  | 
            ||
| 10 | { | 
            ||
| 11 | /**  | 
            ||
| 12 | * @var ConsoleOutput  | 
            ||
| 13 | */  | 
            ||
| 14 | private $output;  | 
            ||
| 15 | |||
| 16 | /**  | 
            ||
| 17 | * @param ConsoleOutput $output  | 
            ||
| 18 | */  | 
            ||
| 19 | public function __construct(ConsoleOutput $output)  | 
            ||
| 23 | |||
| 24 | /**  | 
            ||
| 25 | * @param Config $config  | 
            ||
| 26 | */  | 
            ||
| 27 | public function configure(Config $config)  | 
            ||
| 31 | |||
| 32 | /**  | 
            ||
| 33 | * @param array $calledCounts  | 
            ||
| 34 | * @param array $avgTimes  | 
            ||
| 35 | *  | 
            ||
| 36 | * @return void  | 
            ||
| 37 | */  | 
            ||
| 38 | public function printLogs(array $calledCounts, array $avgTimes)  | 
            ||
| 47 | }  |