123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Backend\Model\Auth;
- /**
- * Backend Auth Storage interface
- *
- * @api
- * @since 100.0.2
- */
- interface StorageInterface
- {
- /**
- * Perform login specific actions
- *
- * @return $this
- * @abstract
- * @api
- */
- public function processLogin();
- /**
- * Perform logout specific actions
- *
- * @return $this
- * @abstract
- * @api
- */
- public function processLogout();
- /**
- * Check if user is logged in
- *
- * @return bool
- * @abstract
- * @api
- */
- public function isLoggedIn();
- /**
- * Prolong storage lifetime
- *
- * @return void
- * @abstract
- * @api
- */
- public function prolong();
- }
|