You are here

public static function Manager::destroy in Drupal 7

Return value

bool

File

misc/typo3/phar-stream-wrapper/src/Manager.php, line 78

Class

Manager

Namespace

TYPO3\PharStreamWrapper

Code

public static function destroy() {
  if (self::$instance === null) {
    return false;
  }
  self::$instance = null;
  return true;
}