You are here

public function MemoryBackend::__construct in Zircon Profile 8

Same name in this branch
  1. 8 core/lib/Drupal/Core/Flood/MemoryBackend.php \Drupal\Core\Flood\MemoryBackend::__construct()
  2. 8 core/lib/Drupal/Core/Cache/MemoryBackend.php \Drupal\Core\Cache\MemoryBackend::__construct()
Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Flood/MemoryBackend.php \Drupal\Core\Flood\MemoryBackend::__construct()

Construct the MemoryBackend.

Parameters

\Symfony\Component\HttpFoundation\RequestStack $request_stack: The request stack used to retrieve the current request.

File

core/lib/Drupal/Core/Flood/MemoryBackend.php, line 35
Contains \Drupal\Core\Flood\MemoryBackend.

Class

MemoryBackend
Defines the memory flood backend. This is used for testing.

Namespace

Drupal\Core\Flood

Code

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