public function Twig_Markup::__construct in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/twig/twig/lib/Twig/Markup.php \Twig_Markup::__construct()
File
- vendor/
twig/ twig/ lib/ Twig/ Markup.php, line 22
Class
- Twig_Markup
- Marks a content as safe.
Code
public function __construct($content, $charset) {
$this->content = (string) $content;
$this->charset = $charset;
}