Init du projet

This commit is contained in:
2018-06-25 22:39:00 +02:00
commit f9229a6025
122 changed files with 23329 additions and 0 deletions

View File

@ -0,0 +1,20 @@
<?php
namespace Smarty\Plugin;
use Smarty;
/**
* Interface to detect if a class is Smarty Block plugin.
*/
interface BlockPluginInterface extends PluginInterface
{
/**
* @param array $params
* @param string $content
* @param Smarty $smarty
* @param bool $repeat
*
* @return string
*/
public function prepare(array $params, $content, $smarty, &$repeat);
}