Current Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Session/ |
Current File : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Session/StorageInterface.php |
<?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(); }