Marks the response stale by setting the Age header to be equal to the maximum age of the response.
$this
public function expire() : static { if ($this->isFresh()) { $this->headers ->set('Age', $this->getMaxAge()); $this->headers ->remove('Expires'); } return $this; }