_filter = $filter; } /** * Negates the filter. * * @return Zend_Ldap_Filter_Abstract */ public function negate() { return $this->_filter; } /** * Returns a string representation of the filter. * * @return string */ public function toString() { return '(!' . $this->_filter->toString() . ')'; } }