mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-17 06:53:15 +00:00
Fix CS
This commit is contained in:
@@ -17,38 +17,39 @@
|
||||
*/
|
||||
interface Session_Storage_Interface
|
||||
{
|
||||
/**
|
||||
* Close the session storage
|
||||
*
|
||||
* @return Void
|
||||
*/
|
||||
public function close();
|
||||
|
||||
/**
|
||||
* Return true if the storage contains the key
|
||||
*
|
||||
* @param string $key
|
||||
* @return boolean
|
||||
*/
|
||||
public function has($key);
|
||||
/**
|
||||
* Close the session storage
|
||||
*
|
||||
* @return Void
|
||||
*/
|
||||
public function close();
|
||||
|
||||
/**
|
||||
* Set a key in the storage
|
||||
*
|
||||
* @param string $key
|
||||
* @param mixed $default_value
|
||||
*/
|
||||
public function get($key, $default_value = null);
|
||||
/**
|
||||
* Return true if the storage contains the key
|
||||
*
|
||||
* @param string $key
|
||||
* @return boolean
|
||||
*/
|
||||
public function has($key);
|
||||
|
||||
public function set($key, $value);
|
||||
/**
|
||||
* Set a key in the storage
|
||||
*
|
||||
* @param string $key
|
||||
* @param mixed $default_value
|
||||
*/
|
||||
public function get($key, $default_value = null);
|
||||
|
||||
public function remove($key);
|
||||
public function set($key, $value);
|
||||
|
||||
public function getName();
|
||||
public function remove($key);
|
||||
|
||||
public function getId();
|
||||
public function getName();
|
||||
|
||||
public function reset();
|
||||
public function getId();
|
||||
|
||||
public function destroy();
|
||||
public function reset();
|
||||
|
||||
public function destroy();
|
||||
}
|
||||
|
Reference in New Issue
Block a user