diff -r 5e7a0fedabdf -r 877f952ae2bd web/lib/Zend/Serializer/Adapter/Igbinary.php --- a/web/lib/Zend/Serializer/Adapter/Igbinary.php Thu Mar 21 17:31:31 2013 +0100 +++ b/web/lib/Zend/Serializer/Adapter/Igbinary.php Thu Mar 21 19:50:53 2013 +0100 @@ -15,9 +15,9 @@ * @category Zend * @package Zend_Serializer * @subpackage Adapter - * @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 - * @version $Id: Igbinary.php 20574 2010-01-24 17:39:14Z mabe $ + * @version $Id: Igbinary.php 24593 2012-01-05 20:35:02Z matthew $ */ /** @see Zend_Serializer_Adapter_AdapterAbstract */ @@ -27,7 +27,7 @@ * @category Zend * @package Zend_Serializer * @subpackage Adapter - * @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_Serializer_Adapter_Igbinary extends Zend_Serializer_Adapter_AdapterAbstract @@ -39,12 +39,12 @@ /** * Constructor - * - * @param array|Zend_Config $opts + * + * @param array|Zend_Config $opts * @return void * @throws Zend_Serializer_Exception If igbinary extension is not present */ - public function __construct($opts = array()) + public function __construct($opts = array()) { if (!extension_loaded('igbinary')) { require_once 'Zend/Serializer/Exception.php'; @@ -60,9 +60,9 @@ /** * Serialize PHP value to igbinary - * - * @param mixed $value - * @param array $opts + * + * @param mixed $value + * @param array $opts * @return string * @throws Zend_Serializer_Exception on igbinary error */ @@ -79,9 +79,9 @@ /** * Deserialize igbinary string to PHP value - * - * @param string|binary $serialized - * @param array $opts + * + * @param string|binary $serialized + * @param array $opts * @return mixed * @throws Zend_Serializer_Exception on igbinary error */