getStatus() !== Http::STATUS_OK) { return $response; } // Check if we are even asked for gzip $header = $this->request->getHeader('Accept-Encoding'); if (!str_contains($header, 'gzip')) { return $response; } // We only allow gzip in some cases if ($response instanceof BaseResponse) { $allowGzip = true; } if ($response instanceof JSONResponse) { $allowGzip = true; } if ($response instanceof TemplateResponse) { $allowGzip = true; } if ($allowGzip) { $this->useGZip = true; $response->addHeader('Content-Encoding', 'gzip'); } return $response; } #[\Override] public function beforeOutput(Controller $controller, string $methodName, string $output): string { if (!$this->useGZip) { return $output; } return gzencode($output); } }