Browse Source

fix order id

tags/2.0.3
0nepeop1e 4 years ago
parent
commit
e00c330b53
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/RazerPayDriver.php

+ 1
- 1
src/RazerPayDriver.php View File

42
 
42
 
43
     public function createPaymentURL(PayableEntity $payable, array $options = []): string
43
     public function createPaymentURL(PayableEntity $payable, array $options = []): string
44
     {
44
     {
45
-        $order_id = urlencode($payable->getBillId());
45
+        $orderid = urlencode($payable->getBillId());
46
         $bill_name = urlencode($payable->getBillName());
46
         $bill_name = urlencode($payable->getBillName());
47
         $bill_email = $payable->getBillEmail();
47
         $bill_email = $payable->getBillEmail();
48
         $bill_mobile = $payable->getBillPhoneNumber();
48
         $bill_mobile = $payable->getBillPhoneNumber();

Loading…
Cancel
Save