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