replacing delegated_block api by widget api

This commit is contained in:
2016-09-18 23:55:15 +02:00
parent 812aeac3d7
commit a3e7c60e01
14 changed files with 1147 additions and 108 deletions

View File

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