diff -r 5e7a0fedabdf -r 877f952ae2bd web/lib/Zend/Log/Formatter/Firebug.php --- a/web/lib/Zend/Log/Formatter/Firebug.php Thu Mar 21 17:31:31 2013 +0100 +++ b/web/lib/Zend/Log/Formatter/Firebug.php Thu Mar 21 19:50:53 2013 +0100 @@ -15,24 +15,35 @@ * @category Zend * @package Zend_Log * @subpackage Formatter - * @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: Firebug.php 20096 2010-01-06 02:05:09Z bkarwin $ + * @version $Id: Firebug.php 24593 2012-01-05 20:35:02Z matthew $ */ -/** Zend_Log_Formatter_Interface */ -require_once 'Zend/Log/Formatter/Interface.php'; +/** Zend_Log_Formatter_Abstract */ +require_once 'Zend/Log/Formatter/Abstract.php'; /** * @category Zend * @package Zend_Log * @subpackage Formatter - * @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_Log_Formatter_Firebug implements Zend_Log_Formatter_Interface +class Zend_Log_Formatter_Firebug extends Zend_Log_Formatter_Abstract { /** + * Factory for Zend_Log_Formatter_Firebug classe + * + * @param array|Zend_Config $options useless + * @return Zend_Log_Formatter_Firebug + */ + public static function factory($options) + { + return new self; + } + + /** * This method formats the event for the firebug writer. * * The default is to just send the message parameter, but through @@ -47,4 +58,4 @@ { return $event['message']; } -} +} \ No newline at end of file