Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bareos/bareos-webui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/zendframework/zend-session/src/Storage/StorageInterface.php')
-rw-r--r--vendor/zendframework/zend-session/src/Storage/StorageInterface.php41
1 files changed, 0 insertions, 41 deletions
diff --git a/vendor/zendframework/zend-session/src/Storage/StorageInterface.php b/vendor/zendframework/zend-session/src/Storage/StorageInterface.php
deleted file mode 100644
index 74a26e3..0000000
--- a/vendor/zendframework/zend-session/src/Storage/StorageInterface.php
+++ /dev/null
@@ -1,41 +0,0 @@
-<?php
-/**
- * Zend Framework (http://framework.zend.com/)
- *
- * @link http://github.com/zendframework/zf2 for the canonical source repository
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
-
-namespace Zend\Session\Storage;
-
-use ArrayAccess;
-use Countable;
-use Serializable;
-use Traversable;
-
-/**
- * Session storage interface
- *
- * Defines the minimum requirements for handling userland, in-script session
- * storage (e.g., the $_SESSION superglobal array).
- */
-interface StorageInterface extends Traversable, ArrayAccess, Serializable, Countable
-{
- public function getRequestAccessTime();
-
- public function lock($key = null);
- public function isLocked($key = null);
- public function unlock($key = null);
-
- public function markImmutable();
- public function isImmutable();
-
- public function setMetadata($key, $value, $overwriteArray = false);
- public function getMetadata($key = null);
-
- public function clear($key = null);
-
- public function fromArray(array $array);
- public function toArray($metaData = false);
-}