예제 #1
0
 /**
  * GetInstance
  *
  * Returns the singleton instance
  *
  * @access public
  * @static
  * @return mixed instance of tmpdir class
  */
 public static function GetInstance()
 {
     if (!self::$instance) {
         self::$instance = new GitPHP_TmpDir();
     }
     return self::$instance;
 }