Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
22 | class ListAction extends AbstractMiddlewareAction |
||
23 | { |
||
24 | /** |
||
25 | * Gets template map name or template file path. |
||
26 | * |
||
27 | * @return string |
||
28 | */ |
||
29 | public function getTemplateName() : string |
||
30 | { |
||
31 | return 'admin-control-panel-users-list'; |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * Gets template data. |
||
36 | * |
||
37 | * @return array |
||
38 | */ |
||
39 | public function getTemplateData() : array |
||
42 | } |
||
43 | } |
||
44 |