123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * Session storage interface
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Session;
- /**
- * Interface \Magento\Framework\Session\StorageInterface
- *
- */
- interface StorageInterface
- {
- /**
- * Initialize storage data
- *
- * @param array $data
- * @return $this
- */
- public function init(array $data);
- /**
- * Get current storage namespace
- *
- * @return string
- */
- public function getNamespace();
- }
|