コード例 #1
0
ファイル: Pbm.php プロジェクト: marlon-be/icepay-api
 /**
  * Create an instance
  *
  * @since version 1.0.0
  * @access public
  * @return instance of self
  */
 public static function getInstance()
 {
     if (!self::$instance) {
         self::$instance = new self();
     }
     return self::$instance;
 }