WP_CLI
Autoloader::unregister()
Unregisters the autoload callback with the SPL autoload system.
Method of the class: Autoloader{}
No Hooks.
Return
null
. Nothing (null).
Usage
$Autoloader = new Autoloader(); $Autoloader->unregister();
Autoloader::unregister() Autoloader::unregister code WP-CLI 2.8.0-alpha
public function unregister() { spl_autoload_unregister( [ $this, 'autoload' ] ); }