You are here

public function FormBase::setRequestStack in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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 168
Contains \Drupal\Core\Form\FormBase.

Class

FormBase
Provides a base class for forms.

Namespace

Drupal\Core\Form

Code

public function setRequestStack(RequestStack $request_stack) {
  $this->requestStack = $request_stack;
  return $this;
}