Flarum\Install\Console\InstallCommand::showErrors PHP Method

showErrors() protected method

protected showErrors ( $errors )
    protected function showErrors($errors)
    {
        foreach ($errors as $error) {
            $this->info($error['message']);
            if (isset($error['detail'])) {
                $this->output->writeln('<comment>' . $error['detail'] . '</comment>');
            }
        }
    }