equal
deleted
inserted
replaced
13 * to license@zend.com so we can send you a copy immediately. |
13 * to license@zend.com so we can send you a copy immediately. |
14 * |
14 * |
15 * @category Zend |
15 * @category Zend |
16 * @package Zend_Application |
16 * @package Zend_Application |
17 * @subpackage Resource |
17 * @subpackage Resource |
18 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
18 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) |
19 * @license http://framework.zend.com/license/new-bsd New BSD License |
19 * @license http://framework.zend.com/license/new-bsd New BSD License |
20 * @version $Id: Session.php 24593 2012-01-05 20:35:02Z matthew $ |
20 * @version $Id$ |
21 */ |
21 */ |
22 |
22 |
23 /** |
23 /** |
24 * @see Zend_Application_Resource_ResourceAbstract |
24 * @see Zend_Application_Resource_ResourceAbstract |
25 */ |
25 */ |
31 * |
31 * |
32 * @uses Zend_Application_Resource_ResourceAbstract |
32 * @uses Zend_Application_Resource_ResourceAbstract |
33 * @category Zend |
33 * @category Zend |
34 * @package Zend_Application |
34 * @package Zend_Application |
35 * @subpackage Resource |
35 * @subpackage Resource |
36 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
36 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) |
37 * @license http://framework.zend.com/license/new-bsd New BSD License |
37 * @license http://framework.zend.com/license/new-bsd New BSD License |
38 */ |
38 */ |
39 class Zend_Application_Resource_Session extends Zend_Application_Resource_ResourceAbstract |
39 class Zend_Application_Resource_Session extends Zend_Application_Resource_ResourceAbstract |
40 { |
40 { |
41 /** |
41 /** |
60 |
60 |
61 /** |
61 /** |
62 * Get session save handler |
62 * Get session save handler |
63 * |
63 * |
64 * @return Zend_Session_SaveHandler_Interface |
64 * @return Zend_Session_SaveHandler_Interface |
|
65 * @throws Zend_Application_Resource_Exception |
65 */ |
66 */ |
66 public function getSaveHandler() |
67 public function getSaveHandler() |
67 { |
68 { |
68 if (!$this->_saveHandler instanceof Zend_Session_SaveHandler_Interface) { |
69 if (!$this->_saveHandler instanceof Zend_Session_SaveHandler_Interface) { |
69 if (is_array($this->_saveHandler)) { |
70 if (is_array($this->_saveHandler)) { |