Browse Source

fix quote

tags/1.0
0nepeop1e 3 years ago
parent
commit
af1de75a7d
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      .idea/workspace.xml
  2. 1
    1
      src/DummyPayDriver.php

+ 1
- 1
.idea/workspace.xml View File

71
       <option name="number" value="Default" />
71
       <option name="number" value="Default" />
72
       <option name="presentableId" value="Default" />
72
       <option name="presentableId" value="Default" />
73
       <updated>1600830685900</updated>
73
       <updated>1600830685900</updated>
74
-      <workItem from="1600830687029" duration="1452000" />
74
+      <workItem from="1600830687029" duration="2385000" />
75
     </task>
75
     </task>
76
     <servers />
76
     <servers />
77
   </component>
77
   </component>

+ 1
- 1
src/DummyPayDriver.php View File

30
     public function createPaymentURL(PayableEntity $payable, array $options = []): string
30
     public function createPaymentURL(PayableEntity $payable, array $options = []): string
31
     {
31
     {
32
         $order_id = $payable->getBillId();
32
         $order_id = $payable->getBillId();
33
-        return "$this->callback_url?'".http_build_query(compact('order_id'));
33
+        return "$this->callback_url?".http_build_query(compact('order_id'));
34
     }
34
     }
35
 
35
 
36
     public function verifyGatewayReturn(Request $request): bool
36
     public function verifyGatewayReturn(Request $request): bool

Loading…
Cancel
Save