function TestClass::onKernelResponseTest

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/service_provider_test/src/TestClass.php \Drupal\service_provider_test\TestClass::onKernelResponseTest()
  2. 8.9.x core/modules/system/tests/modules/service_provider_test/src/TestClass.php \Drupal\service_provider_test\TestClass::onKernelResponseTest()
  3. 10 core/modules/system/tests/modules/service_provider_test/src/TestClass.php \Drupal\service_provider_test\TestClass::onKernelResponseTest()

Flags the response in case a rebuild indicator is used.

File

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

Class

TestClass

Namespace

Drupal\service_provider_test

Code

public function onKernelResponseTest(ResponseEvent $event) {
    $container = \Drupal::getContainer();
    if ($container->hasParameter('container_rebuild_indicator')) {
        $event->getResponse()->headers
            ->set('container_rebuild_indicator', $container->getParameter('container_rebuild_indicator'));
    }
    if ($container->hasParameter('container_rebuild_test_parameter')) {
        $event->getResponse()->headers
            ->set('container_rebuild_test_parameter', $container->getParameter('container_rebuild_test_parameter'));
    }
}

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