content = $content; $now = (new DateTime('now'))->getTimestamp(); $expires = (new DateTime('now + 11 months'))->getTimestamp(); $this->cacheFor($expires - $now, false, true); } /** * Simply sets the headers and returns the file contents * * @return string the file contents */ #[\Override] public function render(): string { return $this->content; } }