From cc72c4839c50ed5a135ff47243998420296b57f1 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sat, 17 Mar 2018 14:44:22 +0100 Subject: [PATCH] app/models/Data/RequestMeta.php: add uri field. --- app/models/Data/RequestMeta.php | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/app/models/Data/RequestMeta.php b/app/models/Data/RequestMeta.php index e4ce3af..808025d 100644 --- a/app/models/Data/RequestMeta.php +++ b/app/models/Data/RequestMeta.php @@ -18,6 +18,13 @@ class RequestMeta extends Model */ protected $callbackid; + /** + * HTTP Request Uri + * + * @var string + */ + protected $uri; + /** * * @var string @@ -65,6 +72,24 @@ class RequestMeta extends Model return $this; } + /** + * @return string + */ + public function getUri() + { + return $this->uri; + } + + /** + * @param string $uri + * @return RequestMeta + */ + public function setUri($uri) + { + $this->uri = (string) $uri; + return $this; + } + /** * Method to set the value of field Timestamp *