/**
  * @return PhpBridgeSessionStorage
  */
 protected function getStorage()
 {
     $storage = new PhpBridgeSessionStorage();
     $storage->registerBag(new AttributeBag());
     return $storage;
 }
 public function __construct($handler = null, MetadataBag $metaBag = null)
 {
     $handler = new NativeSessionHandler();
     parent::__construct($handler, $metaBag);
 }