function KernelTestBaseShutdownTest::shutdownFunction

Registers that this shutdown function has been called.

File

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

Class

KernelTestBaseShutdownTest
Tests Drupal\KernelTests\KernelTestBase.

Namespace

Drupal\KernelTests

Code

public function shutdownFunction() : void {
  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.