You are here

static function StaticCallLog::unsetCallLog in X Autoload 7.5

Uninitialize.

Throws

\Exception

1 call to StaticCallLog::unsetCallLog()
AbstractDrupalBootTest::unprepare in tests/src/DrupalBootTest/AbstractDrupalBootTest.php
Runs after a test is finished.

File

tests/src/Util/StaticCallLog.php, line 31

Class

StaticCallLog

Namespace

Drupal\xautoload\Tests\Util

Code

static function unsetCallLog() {
  if (!isset(self::$callLog)) {
    throw new \Exception("StaticCallLog not initialized yet.");
  }
  self::$callLog = NULL;
}