function DatabaseEventEnabler::handle

Same name and namespace in other branches
  1. 11.x core/modules/system/tests/modules/performance_test/src/DatabaseEventEnabler.php \Drupal\performance_test\DatabaseEventEnabler::handle()

File

core/modules/system/tests/modules/performance_test/src/DatabaseEventEnabler.php, line 18

Class

DatabaseEventEnabler

Namespace

Drupal\performance_test

Code

public function handle(Request $request, $type = self::MAIN_REQUEST, $catch = TRUE) : Response {
  if ($type === static::MAIN_REQUEST) {
    $this->connection
      ->enableEvents(StatementEvent::all());
  }
  return $this->httpKernel
    ->handle($request, $type, $catch);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.