WP_CLI
Autoloader::unregister
Unregisters the autoload callback with the SPL autoload system.
Метод класса: Autoloader{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$Autoloader = new Autoloader(); $Autoloader->unregister();
Код Autoloader::unregister() Autoloader::unregister WP-CLI 2.13.0-alpha
public function unregister() {
spl_autoload_unregister( [ $this, 'autoload' ] );
}