public function TwigTestExtension::escape_and_nl2br

nl2br which also escapes, for testing escaper filters

File

drupal/core/vendor/twig/twig/test/Twig/Tests/IntegrationTest.php, line 173

Class

TwigTestExtension

Code

public function escape_and_nl2br($env, $value, $sep = '<br />') {
  return $this
    ->nl2br(twig_escape_filter($env, $value, 'html'), $sep);
}