From e51b7ba93c4978c885bc099d857b2842612820a5 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 4 Oct 2023 01:51:51 +0000 Subject: [PATCH] expand impression with end time --- Message/Http/ImpressionStat.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Message/Http/ImpressionStat.php b/Message/Http/ImpressionStat.php index 15cd33a84..b51116fe0 100644 --- a/Message/Http/ImpressionStat.php +++ b/Message/Http/ImpressionStat.php @@ -59,6 +59,14 @@ class ImpressionStat */ public \DateTime $datetime; + /** + * Request time + * + * @var null|\DateTime + * @since 1.0.0 + */ + public ?\DateTime $end = null; + /** * Request host/domain * @@ -148,6 +156,7 @@ class ImpressionStat 'country' => $this->country, 'referer' => $this->referer, 'datetime' => $this->datetime->getTimestamp(), + 'end' => $this->end?->getTimestamp(), 'meta' => $this->meta, ]; }