_accept = (! $suppress); } /** * Returns TRUE to accept the message, FALSE to block it. * * @param array $event event data * @return boolean accepted? */ public function accept($event) { 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(); } }