PHPRtfLite::unregisterAutoloader PHP Méthode

unregisterAutoloader() public static méthode

unregisters autoloader for PHPRtfLite classes
public static unregisterAutoloader ( ) : boolean
Résultat boolean
    public static function unregisterAutoloader()
    {
        return spl_autoload_unregister(array('PHPRtfLite_Autoloader', 'autoload'));
    }

Usage Example

 /**
  * tests unregisterAutoloader
  */
 public function testUnregisterAutoloader()
 {
     $this->assertTrue(PHPRtfLite::unregisterAutoloader());
 }