From e264e91ed58ea44a110c8552d49a293047412293 Mon Sep 17 00:00:00 2001 From: Jason Varga Date: Wed, 22 Nov 2023 10:59:59 -0500 Subject: [PATCH] concat the url and just expose that --- src/Events/UrlInvalidated.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/Events/UrlInvalidated.php b/src/Events/UrlInvalidated.php index b8eec810f6..5b65f80997 100644 --- a/src/Events/UrlInvalidated.php +++ b/src/Events/UrlInvalidated.php @@ -4,14 +4,10 @@ class UrlInvalidated extends Event { - public $domain; - public $fullUrl; public $url; public function __construct($url, $domain = null) { - $this->domain = $domain; - $this->fullUrl = url($url); - $this->url = $url; + $this->url = $domain.$url; } }