コード例 #1
0
ファイル: QR_Util.class.php プロジェクト: GGF/baza4
 /**
  * Singleton pattern
  * 
  * @return QR_Util
  */
 public static function getInstance()
 {
     if (!self::$instance) {
         self::$instance = new self();
     }
     return self::$instance;
 }