filter($value); } /** * Defined by FilterInterface * * Decompresses the content $value with the defined settings * * @param string $value Content to decompress * @return string The decompressed content */ public function filter($value) { if (! is_string($value) && $value !== null) { return $value; } return $this->getAdapter()->decompress($value); } }