Ejemplo n.º 1
0
 /**
  * Registers this Autoloader at the stack
  *
  * After registration, this Autoloader is autoloading class definitions.
  *
  * There is no need to configure this object. All missing
  * members are initialized before registration:
  * -The index would be an AutoloaderIndex_SerializedHashtable_GZ.
  * -The parser will be (if PHP has tokenizer support)
  *  an AutoloaderFileParser_Tokenizer.
  * -The class path was set by the constructor to the directory
  *  of the calling file.
  * -The timeout for finding a class is set to max_execution_time.
  * -The AutoloaderFileIterator searches for files in the filesystem.
  *
  * {@link spl_autoload_register()} disables __autoload(). This might be
  * unwanted, so register() also adds __autoload() to the stack.
  *
  * @throws AutoloaderException_GuessPathFailed
  * @see initMembers()
  * @see setIndex()
  * @see AutoloaderIndex_SerializedHashtable_GZ
  * @see setParser()
  * @see _initMembers()
  * @see AutoloaderFileParser_Tokenizer
  * @see spl_autoload_register()
  * @return void
  */
 public function register()
 {
     $this->_initMembers();
     parent::register();
     self::_normalizeSearchPaths();
 }