You are here

public function TestClass::onKernelRequestTest in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/service_provider_test/src/TestClass.php \Drupal\service_provider_test\TestClass::onKernelRequestTest()
  2. 10 core/modules/system/tests/modules/service_provider_test/src/TestClass.php \Drupal\service_provider_test\TestClass::onKernelRequestTest()

A simple kernel listener method.

File

core/modules/system/tests/modules/service_provider_test/src/TestClass.php, line 38

Class

TestClass

Namespace

Drupal\service_provider_test

Code

public function onKernelRequestTest(RequestEvent $event) {
  \Drupal::messenger()
    ->addStatus(t('The service_provider_test event subscriber fired!'));
}