| 1 | <?php |
||
| 21 | class GetStatHelper implements RendererHelperInterface |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * Should return the name of the helper. |
||
| 25 | * |
||
| 26 | * @return string |
||
| 27 | * @codeCoverageIgnore - plain text |
||
| 28 | */ |
||
| 29 | public static function getName() : string |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Should return the name of the helper. |
||
| 36 | * |
||
| 37 | * @return string |
||
| 38 | * @codeCoverageIgnore - plain text |
||
| 39 | */ |
||
| 40 | public static function getDefinition() : string |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Should return a description text. |
||
| 47 | * |
||
| 48 | * @return string |
||
| 49 | * @codeCoverageIgnore - plain text |
||
| 50 | */ |
||
| 51 | public static function getDescription() : string |
||
| 59 | |||
| 60 | /** |
||
| 61 | * A renderer helper should be called with its name. |
||
| 62 | * |
||
| 63 | * @return array |
||
| 64 | */ |
||
| 65 | public function __invoke() : array |
||
| 69 | } |
||
| 70 |