public function FormBase::setRequestStack in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Form/FormBase.php \Drupal\Core\Form\FormBase::setRequestStack()
 
Sets the request stack object to use.
Parameters
\Symfony\Component\HttpFoundation\RequestStack $request_stack: The request stack object.
Return value
$this
File
- core/
lib/ Drupal/ Core/ Form/ FormBase.php, line 184  
Class
- FormBase
 - Provides a base class for forms.
 
Namespace
Drupal\Core\FormCode
public function setRequestStack(RequestStack $request_stack) {
  $this->requestStack = $request_stack;
  return $this;
}