body = gzdeflate( $response->body ); if ( !$response->content ) { $response->content = new ezcMvcResultContent; } $response->content->encoding = 'deflate'; } /** * Should not be called with any options, as this filter doesn't support any. * * @throws ezcMvcFilterHasNoOptionsException if the $options array is not * empty. * @param array $options */ public function setOptions( array $options ) { if ( count( $options ) ) { throw new ezcMvcFilterHasNoOptionsException( __CLASS__ ); } } } ?>