| Total Complexity | 4 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 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) |
||
| 20 | { |
||
| 21 | $this->output = $output; |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param Config $config |
||
| 26 | */ |
||
| 27 | public function configure(Config $config) |
||
| 29 | // no configuration required |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param \Generator $avgTimes |
||
| 34 | * |
||
| 35 | * @return void |
||
| 36 | */ |
||
| 37 | public function printLogs(\Generator $avgTimes) |
||
| 45 | } |
||
| 46 | } |
||
| 47 |