Asm89\Twig\Lint\Output\CsvOutput::error PHP Method

error() public method

{@inheritDoc}
public error ( $template, Twig_Error $exception, $file = null )
$exception Twig_Error
    public function error($template, Twig_Error $exception, $file = null)
    {
        $filename = $file ? '"' . (string) $file . '",' : '';
        $this->output->writeln($filename . $exception->getTemplateLine() . ',' . $exception->getRawMessage());
    }