Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libs/Zend/Log/Filter/Suppress.php')
-rw-r--r--libs/Zend/Log/Filter/Suppress.php23
1 files changed, 6 insertions, 17 deletions
diff --git a/libs/Zend/Log/Filter/Suppress.php b/libs/Zend/Log/Filter/Suppress.php
index d87d2720a2..026db36727 100644
--- a/libs/Zend/Log/Filter/Suppress.php
+++ b/libs/Zend/Log/Filter/Suppress.php
@@ -15,23 +15,23 @@
* @category Zend
* @package Zend_Log
* @subpackage Filter
- * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
+ * @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id: Suppress.php 20096 2010-01-06 02:05:09Z bkarwin $
+ * @version $Id: Suppress.php 16219 2009-06-21 19:45:39Z thomas $
*/
/** Zend_Log_Filter_Interface */
-// require_once 'Zend/Log/Filter/Interface.php';
+require_once 'Zend/Log/Filter/Interface.php';
/**
* @category Zend
* @package Zend_Log
* @subpackage Filter
- * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
+ * @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id: Suppress.php 20096 2010-01-06 02:05:09Z bkarwin $
+ * @version $Id: Suppress.php 16219 2009-06-21 19:45:39Z thomas $
*/
-class Zend_Log_Filter_Suppress extends Zend_Log_Filter_Abstract
+class Zend_Log_Filter_Suppress implements Zend_Log_Filter_Interface
{
/**
* @var boolean
@@ -63,15 +63,4 @@ class Zend_Log_Filter_Suppress extends Zend_Log_Filter_Abstract
return $this->_accept;
}
- /**
- * Create a new instance of Zend_Log_Filter_Suppress
- *
- * @param array|Zend_Config $config
- * @return Zend_Log_Filter_Suppress
- * @throws Zend_Log_Exception
- */
- static public function factory($config)
- {
- return new self();
- }
}