mirror of
https://github.com/smarty-php/smarty.git
synced 2026-08-10 23:41:23 +02:00
16 lines
376 B
PHP
16 lines
376 B
PHP
<?php
|
|||
|
|
|
||
|
|
namespace Smarty\FunctionHandler;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Function handler interface with support for specifying supported properties
|
||
|
|
*/
|
||
|
|
interface AttributeFunctionHandlerInterface extends FunctionHandlerInterface
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Returns an array with the supported attributes, flags, and shorttags
|
||
|
|
* @return array<string, array>
|
||
|
|
*/
|
||
|
|
public function getSupportedAttributes(): array;
|
||
|
|
}
|