noCache = $noCache; } public function shouldByPassCache(): bool { return $this->noCache; } public static function parse(HttpHeader $header): PragmaHeader { return new PragmaHeader($header->getFirstLine() === 'no-cache'); } }