Archived
1
0
Fork 0

app/models/Data/RequestMeta.php: add uri field.

This commit is contained in:
Henrik Hautakoski 2018-03-17 14:44:22 +01:00
parent 3286ec8ec0
commit cc72c4839c

View file

@ -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
*