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,13 @@
<?php
namespace Smarty\Plugin;
/**
* Interface to detect if a class is Smarty plugin.
*
* Abstract base interface that cannot be implemented alone. Instead it must be
* implemented by either FunctionPluginInterface, ModifierPluginInterface,
* BlockPluginInterface or IfBlockPluginInterface.
*/
interface PluginInterface
{
}