output = $output ?? new ConsoleOutput(); parent::__construct($level, $bubble); } /** * Writes the record down to the log of the implementing handler. */ protected function write(array $record): void { $this->output->writeln($record['formatted']); } }