| 1 | <?php |
||
| 23 | class GetStatHelper implements HelperInterface |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * Should return the name of the helper. |
||
| 27 | * |
||
| 28 | * @return string |
||
| 29 | */ |
||
| 30 | public static function getName() : string |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Should return the name of the helper. |
||
| 37 | * |
||
| 38 | * @return string |
||
| 39 | */ |
||
| 40 | public static function getDefinition() : string |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Gets helper options for the render. |
||
| 47 | * |
||
| 48 | * @return array |
||
| 49 | * @codeCoverageIgnore - empty array |
||
| 50 | */ |
||
| 51 | public static function getOptions() : array |
||
| 55 | |||
| 56 | /** |
||
| 57 | * Should return a description text. |
||
| 58 | * |
||
| 59 | * @return string |
||
| 60 | */ |
||
| 61 | public static function getDescription() : string |
||
| 69 | |||
| 70 | /** |
||
| 71 | * A renderer helper should be called with its name. |
||
| 72 | * |
||
| 73 | * @return array |
||
| 74 | */ |
||
| 75 | public function __invoke() : array |
||
| 79 | } |
||
| 80 |