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_Service |
16 * @package Zend_Service |
17 * @subpackage Nirvanix |
17 * @subpackage Nirvanix |
18 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
18 * @copyright Copyright (c) 2005-2012 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: Base.php 20096 2010-01-06 02:05:09Z bkarwin $ |
20 * @version $Id: Base.php 24593 2012-01-05 20:35:02Z matthew $ |
21 */ |
21 */ |
22 |
22 |
23 /** |
23 /** |
24 * @see Zend_Http_Client |
24 * @see Zend_Http_Client |
25 */ |
25 */ |
36 * PHP object calls rather than by having to construct HTTP client requests. |
36 * PHP object calls rather than by having to construct HTTP client requests. |
37 * |
37 * |
38 * @category Zend |
38 * @category Zend |
39 * @package Zend_Service |
39 * @package Zend_Service |
40 * @subpackage Nirvanix |
40 * @subpackage Nirvanix |
41 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
41 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
42 * @license http://framework.zend.com/license/new-bsd New BSD License |
42 * @license http://framework.zend.com/license/new-bsd New BSD License |
43 */ |
43 */ |
44 class Zend_Service_Nirvanix_Namespace_Base |
44 class Zend_Service_Nirvanix_Namespace_Base |
45 { |
45 { |
46 /** |
46 /** |
74 protected $_defaults = array(); |
74 protected $_defaults = array(); |
75 |
75 |
76 /** |
76 /** |
77 * Class constructor. |
77 * Class constructor. |
78 * |
78 * |
79 * @param $options array Options and dependency injection |
79 * @param array $options Options and dependency injection |
80 */ |
80 */ |
81 public function __construct($options = array()) |
81 public function __construct($options = array()) |
82 { |
82 { |
83 if (isset($options['baseUrl'])) { |
83 if (isset($options['baseUrl'])) { |
84 $this->_host = $options['baseUrl']; |
84 $this->_host = $options['baseUrl']; |