/**
  * Renvoie le singleton
  *
  * @return CopixAutoloader Singleton
  */
 public static function getInstance()
 {
     if (!self::$_instance) {
         self::$_instance = new CopixAutoloader();
     }
     return self::$_instance;
 }