Ejemplo n.º 1
0
 /**
  * Returns all registered InternalAutoloader instances which are doing their
  * jobs
  *
  * @see register()
  * @return Array
  */
 public static function getRegisteredAutoloaders()
 {
     $autoloaders = array();
     foreach (parent::getRegisteredAutoloaders() as $autoloader) {
         if ($autoloader instanceof self) {
             $autoloaders[] = $autoloader;
         }
     }
     return $autoloaders;
 }