コード例 #1
0
ファイル: UserMapper.class.php プロジェクト: pars5555/pcstore
 /**
  * Returns an singleton instance of this class
  * @return
  */
 public static function getInstance()
 {
     if (self::$instance == null) {
         self::$instance = new UserMapper();
     }
     return self::$instance;
 }