chill-bundles/Templating/Widget/WidgetInterface.php

10 lines
196 B
PHP

<?php
namespace Chill\MainBundle\Templating\Widget;
use Twig_Environment;
interface WidgetInterface
{
public function render(Twig_Environment $env, $place, array $context, array $config);
}