コード例 #1
0
ファイル: invitation_service.php プロジェクト: vazahat/dudex
 /**
  * Returns class instance
  *
  * @return BOL_InvitationService
  */
 public static function getInstance()
 {
     if (!isset(self::$classInstance)) {
         self::$classInstance = new self();
     }
     return self::$classInstance;
 }