| 1 | <?php |
||
| 21 | class DashboardAction extends AbstractMiddlewareAction |
||
| 22 | { |
||
| 23 | /** @var AuthAdapterInterface */ |
||
| 24 | private $authAdapter; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * DashboardAction constructor. |
||
| 28 | * |
||
| 29 | * @param AuthAdapterInterface $authAdapter |
||
| 30 | */ |
||
| 31 | public function __construct(AuthAdapterInterface $authAdapter) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Gets template map name or template file path. |
||
| 38 | * |
||
| 39 | * @return string |
||
| 40 | */ |
||
| 41 | public function getTemplateName() |
||
| 45 | |||
| 46 | /** |
||
| 47 | * Gets template data. |
||
| 48 | * |
||
| 49 | * @return array |
||
| 50 | */ |
||
| 51 | public function getTemplateData() |
||
| 58 | } |
||
| 59 |