League\CommonMark\HtmlRenderer::__construct PHP Method

__construct() public method

public __construct ( Environment $environment )
$environment Environment
    public function __construct(Environment $environment)
    {
        $this->environment = $environment;
    }

Usage Example

 public function __construct(Environment $environment, \Twig_Environment $twig, $template = 'commonmark.html.twig')
 {
     parent::__construct($environment);
     $this->twig = $twig;
     $this->defaultTemplate = $template;
 }