lib: Add Form::setRequest()

This commit is contained in:
Eric Lippmann 2015-09-07 13:55:52 +02:00
parent 1fb613e811
commit b897813e71
1 changed files with 13 additions and 0 deletions
library/Icinga/Web

View File

@ -1396,6 +1396,19 @@ class Form extends Zend_Form
return $this->request;
}
/**
* Set the request
*
* @param Request $request
*
* @return $this
*/
public function setRequest(Request $request)
{
$this->request = $request;
return $this;
}
/**
* Return the current Response
*