winter/modules/system/twig/Engine.php
Christian 98bc0c0977 Laravel 5.5 Engine directory change
They moved the Engine interface to Contracts so this is a small fix.
2017-08-08 21:55:48 -04:00

33 lines
699 B
PHP

<?php namespace System\Twig;
use Twig_Environment;
use Illuminate\Contracts\View\Engine as EngineInterface;
/**
* View engine used by the system, used for converting .htm files to twig.
*
* @package october\system
* @author Alexey Bobkov, Samuel Georges
*/
class Engine implements EngineInterface
{
/**
* @var Twig_Environment
*/
protected $environment;
/**
* Constructor
*/
public function __construct(Twig_Environment $environment)
{
$this->environment = $environment;
}
public function get($path, array $vars = [])
{
$template = $this->environment->loadTemplate($path);
return $template->render($vars);
}
}