コード例 #1
0
ファイル: UserHelper.class.php プロジェクト: nterray/tuleap
 /**
  * 
  * @return UserHelper
  */
 public static function instance()
 {
     if (!isset(self::$_instance)) {
         $c = __CLASS__;
         self::$_instance = new $c();
     }
     return self::$_instance;
 }