14 lines
333 B
PHP
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
|
|
{
|
|
}
|