--- a/web/lib/Zend/Cloud/StorageService/Factory.php Thu Mar 21 17:31:31 2013 +0100
+++ b/web/lib/Zend/Cloud/StorageService/Factory.php Thu Mar 21 19:50:53 2013 +0100
@@ -15,7 +15,7 @@
* @category Zend
* @package Zend_Cloud
* @subpackage StorageService
- * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
@@ -25,34 +25,34 @@
* @category Zend
* @package Zend_Cloud
* @subpackage StorageService
- * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class Zend_Cloud_StorageService_Factory extends Zend_Cloud_AbstractFactory
{
const STORAGE_ADAPTER_KEY = 'storage_adapter';
-
+
/**
* @var string Interface which adapter must implement to be considered valid
*/
protected static $_adapterInterface = 'Zend_Cloud_StorageService_Adapter';
/**
* Constructor
- *
+ *
* @return void
*/
private function __construct()
{
// private ctor - should not be used
}
-
+
/**
* Retrieve StorageService adapter
- *
- * @param array $options
- * @return void
+ *
+ * @param array $options
+ * @return Zend_Cloud_StorageService_Adapter
*/
- public static function getAdapter($options = array())
+ public static function getAdapter($options = array())
{
$adapter = parent::_getAdapter(self::STORAGE_ADAPTER_KEY, $options);
if (!$adapter) {