Ejemplo n.º 1
0
 /**
  * @static function Instance
  * Singleton function
  */
 protected static function Instance()
 {
     if (!isset(self::$Instance)) {
         self::$Instance = new FirePHP();
     }
     return self::$Instance;
 }