1 <?php
2 /**
3 * @package Joomla.Platform
4 * @subpackage Session
5 *
6 * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved.
7 * @license GNU General Public License version 2 or later; see LICENSE
8 */
9
10 defined('JPATH_PLATFORM') or die;
11
12 /**
13 * File session handler for PHP
14 *
15 * @link https://secure.php.net/manual/en/function.session-set-save-handler.php
16 * @since 11.1
17 * @deprecated 4.0 The CMS' Session classes will be replaced with the `joomla/session` package
18 */
19 class JSessionStorageNone extends JSessionStorage
20 {
21 /**
22 * Register the functions of this class with PHP's session handler
23 *
24 * @return void
25 *
26 * @since 11.1
27 */
28 public function register()
29 {
30 // Default session handler is `files`
31 }
32 }
33