composer package updates
[openemr.git] / vendor / symfony / http-foundation / Session / Storage / Proxy / NativeProxy.php
bloba0f48c1e27e5417469e759878ee8928ee1d54505
1 <?php
3 /*
4 * This file is part of the Symfony package.
6 * (c) Fabien Potencier <fabien@symfony.com>
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 namespace Symfony\Component\HttpFoundation\Session\Storage\Proxy;
14 /**
15 * This proxy is built-in session handlers in PHP 5.3.x.
17 * @author Drak <drak@zikula.org>
19 class NativeProxy extends AbstractProxy
21 public function __construct()
23 // this makes an educated guess as to what the handler is since it should already be set.
24 $this->saveHandlerName = ini_get('session.save_handler');
27 /**
28 * Returns true if this handler wraps an internal PHP session save handler using \SessionHandler.
30 * @return bool False
32 public function isWrapper()
34 return false;