1: <?php
2:
3: /**
4: * This file is part of the Nette Framework (https://nette.org)
5: * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
6: */
7:
8: namespace Nette\Http;
9:
10:
11: /**
12: * User session storage for PHP < 5.4. @see http://php.net/session_set_save_handler
13: *
14: * @deprecated since PHP 5.4, use \SessionHandlerInterface
15: */
16: interface ISessionStorage
17: {
18:
19: function open($savePath, $sessionName);
20:
21: function close();
22:
23: function read($id);
24:
25: function write($id, $data);
26:
27: function remove($id);
28:
29: function clean($maxlifetime);
30:
31: }
32: