Sets the Date header.
@final
$this
public function setDate(\DateTimeInterface $date) : static { $date = \DateTimeImmutable::createFromInterface($date); $date = $date->setTimezone(new \DateTimeZone('UTC')); $this->headers ->set('Date', $date->format('D, d M Y H:i:s') . ' GMT'); return $this; }