WP_CLI

Autoloader::__destruct()publicWP-CLI 1.0

Destructor for the Autoloader class.

The destructor automatically unregisters the autoload callback function with the SPL autoload system.

Метод класса: Autoloader{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$Autoloader = new Autoloader();
$Autoloader->__destruct();

Код Autoloader::__destruct() WP-CLI 2.8.0-alpha

public function __destruct() {
	$this->unregister();
}