1 <?php
2 /**
3 * Part of the Joomla Framework Session Package
4 *
5 * @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
6 * @license GNU General Public License version 2 or later; see LICENSE
7 */
8
9 namespace Joomla\Session\Storage;
10
11 use Joomla\Session\Storage;
12
13 /**
14 * Default PHP configured session handler for Joomla!
15 *
16 * @see http://www.php.net/manual/en/function.session-set-save-handler.php
17 * @since 1.0
18 * @deprecated 2.0 The Storage class chain will be removed
19 */
20 class None extends Storage
21 {
22 /**
23 * Register the functions of this class with PHP's session handler
24 *
25 * @return void
26 *
27 * @since 1.0
28 * @deprecated 2.0
29 */
30 public function register()
31 {
32 }
33 }
34