function KernelTestBaseShutdownTest::shutdownFunction

Same name in other branches
  1. 9 core/tests/Drupal/KernelTests/KernelTestBaseShutdownTest.php \Drupal\KernelTests\KernelTestBaseShutdownTest::shutdownFunction()
  2. 8.9.x core/tests/Drupal/KernelTests/KernelTestBaseShutdownTest.php \Drupal\KernelTests\KernelTestBaseShutdownTest::shutdownFunction()
  3. 11.x core/tests/Drupal/KernelTests/KernelTestBaseShutdownTest.php \Drupal\KernelTests\KernelTestBaseShutdownTest::shutdownFunction()

Registers that this shutdown function has been called.

File

core/tests/Drupal/KernelTests/KernelTestBaseShutdownTest.php, line 57

Class

KernelTestBaseShutdownTest
@coversDefaultClass \Drupal\KernelTests\KernelTestBase

Namespace

Drupal\KernelTests

Code

public function shutdownFunction() {
    self::$shutdownCalled[] = 'shutdownFunction';
    drupal_register_shutdown_function([
        $this,
        'shutdownFunction2',
    ]);
}

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