Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit fe076b1

Browse files
Updated doc headline
1 parent 28ac82e commit fe076b1

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

‎docs/Domestic.md‎

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Domestic Gateway
44
Để nắm sơ lược về khái niệm và cách sử dụng các **Omnipay** gateways bạn hãy truy cập vào [đây](https://omnipay.thephpleague.com/)
55
để kham khảo.
66

7-
## Khởi tạo gateway:
7+
### Khởi tạo gateway:
88

99
```php
1010
use Omnipay\Omnipay;
@@ -19,7 +19,7 @@ $gateway->setVpcHashKey('Do OnePay cấp');
1919

2020
Gateway khởi tạo ở trên dùng để tạo các yêu cầu xử lý đến OnePay hoặc dùng để nhận yêu cầu do OnePay gửi đến.
2121

22-
## Tạo yêu cầu thanh toán:
22+
### Tạo yêu cầu thanh toán:
2323

2424
```php
2525
$response = $gateway->purchase([
@@ -40,7 +40,7 @@ if ($response->isRedirect()) {
4040

4141
Kham khảo thêm các tham trị khi tạo yêu cầu và OnePay trả về tại [đây](https://mtf.onepay.vn/developer/resource/documents/docx/quy_trinh_tich_hop-noidia.pdf).
4242

43-
## Kiểm tra thông tin `vpc_ReturnURL` khi khách được OnePay redirect về:
43+
### Kiểm tra thông tin `vpc_ReturnURL` khi khách được OnePay redirect về:
4444

4545
```php
4646
$response = $gateway->completePurchase()->send();
@@ -60,7 +60,7 @@ if ($response->isSuccessful()) {
6060

6161
Kham khảo thêm các tham trị khi OnePay trả về tại [đây](https://mtf.onepay.vn/developer/resource/documents/docx/quy_trinh_tich_hop-noidia.pdf).
6262

63-
## Kiểm tra thông tin `IPN` do OnePay gửi sang:
63+
### Kiểm tra thông tin `IPN` do OnePay gửi sang:
6464

6565
```php
6666
$response = $gateway->notification()->send();
@@ -80,7 +80,7 @@ if ($response->isSuccessful()) {
8080

8181
Kham khảo thêm các tham trị khi OnePay gửi sang tại [đây](https://mtf.onepay.vn/developer/resource/documents/docx/quy_trinh_tich_hop-noidia.pdf).
8282

83-
## Kiểm tra trạng thái giao dịch:
83+
### Kiểm tra trạng thái giao dịch:
8484

8585
```php
8686
$response = $gateway->queryTransaction([
@@ -100,7 +100,7 @@ if ($response->isSuccessful()) {
100100

101101
Kham khảo thêm các tham trị khi tạo yêu cầu và OnePay trả về tại [đây](https://mtf.onepay.vn/developer/resource/documents/docx/quy_trinh_tich_hop-noidia.pdf).
102102

103-
## Phương thức hổ trợ debug:
103+
### Phương thức hổ trợ debug:
104104

105105
Một số phương thức chung hổ trợ debug khi `isSuccessful()` trả về `FALSE`:
106106

‎docs/International.md‎

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
International Gateway
2-
-------------------
2+
-----------------------
33

44
Để nắm sơ lược về khái niệm và cách sử dụng các **Omnipay** gateways bạn hãy truy cập vào [đây](https://omnipay.thephpleague.com/)
55
để kham khảo.
66

7-
## Khởi tạo gateway:
7+
### Khởi tạo gateway:
88

99
```php
1010
use Omnipay\Omnipay;
@@ -19,7 +19,7 @@ $gateway->setVpcHashKey('Do OnePay cấp');
1919

2020
Gateway khởi tạo ở trên dùng để tạo các yêu cầu xử lý đến OnePay hoặc dùng để nhận yêu cầu do OnePay gửi đến.
2121

22-
## Tạo yêu cầu thanh toán:
22+
### Tạo yêu cầu thanh toán:
2323

2424
```php
2525
$response = $gateway->purchase([
@@ -40,7 +40,7 @@ if ($response->isRedirect()) {
4040

4141
Kham khảo thêm các tham trị khi tạo yêu cầu và OnePay trả về tại [đây](https://mtf.onepay.vn/developer/resource/documents/docx/quy_trinh_tich_hop-noidia.pdf).
4242

43-
## Kiểm tra thông tin `vpc_ReturnURL` khi khách được OnePay redirect về:
43+
### Kiểm tra thông tin `vpc_ReturnURL` khi khách được OnePay redirect về:
4444

4545
```php
4646
$response = $gateway->completePurchase()->send();
@@ -60,7 +60,7 @@ if ($response->isSuccessful()) {
6060

6161
Kham khảo thêm các tham trị khi OnePay trả về tại [đây](https://mtf.onepay.vn/developer/resource/documents/docx/quy_trinh_tich_hop-noidia.pdf).
6262

63-
## Kiểm tra thông tin `IPN` do OnePay gửi sang:
63+
### Kiểm tra thông tin `IPN` do OnePay gửi sang:
6464

6565
```php
6666
$response = $gateway->notification()->send();
@@ -80,7 +80,7 @@ if ($response->isSuccessful()) {
8080

8181
Kham khảo thêm các tham trị khi OnePay gửi sang tại [đây](https://mtf.onepay.vn/developer/resource/documents/docx/quy_trinh_tich_hop-noidia.pdf).
8282

83-
## Kiểm tra trạng thái giao dịch:
83+
### Kiểm tra trạng thái giao dịch:
8484

8585
```php
8686
$response = $gateway->queryTransaction([
@@ -100,7 +100,7 @@ if ($response->isSuccessful()) {
100100

101101
Kham khảo thêm các tham trị khi tạo yêu cầu và OnePay trả về tại [đây](https://mtf.onepay.vn/developer/resource/documents/docx/quy_trinh_tich_hop-noidia.pdf).
102102

103-
## Phương thức hổ trợ debug:
103+
### Phương thức hổ trợ debug:
104104

105105
Một số phương thức chung hổ trợ debug khi `isSuccessful()` trả về `FALSE`:
106106

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /