nriault/module/Smarty/src/Plugin/PluginInterface.php
2018-06-25 22:39:00 +02:00

14 lines
333 B
PHP

<?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
{
}