mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
10 lines
196 B
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);
|
|
} |