app/models/Data/RequestMeta.php: add uri field.
This commit is contained in:
parent
3286ec8ec0
commit
cc72c4839c
1 changed files with 25 additions and 0 deletions
|
|
@ -18,6 +18,13 @@ class RequestMeta extends Model
|
||||||
*/
|
*/
|
||||||
protected $callbackid;
|
protected $callbackid;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* HTTP Request Uri
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $uri;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
|
|
@ -65,6 +72,24 @@ class RequestMeta extends Model
|
||||||
return $this;
|
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
|
* Method to set the value of field Timestamp
|
||||||
*
|
*
|
||||||
|
|
|
||||||
Reference in a new issue