1 | <?php |
||
22 | class GetDatesHelper implements HelperInterface |
||
23 | { |
||
24 | /** @var EnvironmentInterface */ |
||
25 | private $environmentManager; |
||
26 | |||
27 | /** |
||
28 | * GetTagsHelper constructor. |
||
29 | * |
||
30 | * @param EnvironmentInterface $environmentManager |
||
31 | */ |
||
32 | public function __construct(EnvironmentInterface $environmentManager) |
||
36 | |||
37 | /** |
||
38 | * Should return the name of the helper. |
||
39 | * |
||
40 | * @return string |
||
41 | */ |
||
42 | public static function getName() : string |
||
46 | |||
47 | /** |
||
48 | * Should return the name of the helper. |
||
49 | * |
||
50 | * @return string |
||
51 | */ |
||
52 | public static function getDefinition() : string |
||
56 | |||
57 | /** |
||
58 | * Gets helper options for the render. |
||
59 | * |
||
60 | * @return array |
||
61 | * @codeCoverageIgnore - empty array |
||
62 | */ |
||
63 | public static function getOptions() : array |
||
67 | |||
68 | /** |
||
69 | * Should return a description text. |
||
70 | * |
||
71 | * @return string |
||
72 | */ |
||
73 | public static function getDescription() : string |
||
77 | |||
78 | /** |
||
79 | * A renderer helper should be called with its name. |
||
80 | * |
||
81 | * @return array |
||
82 | */ |
||
83 | public function __invoke() : array |
||
92 | } |
||
93 |