Browse Source

release 1.1

tags/1.1
0nepeop1e 4 years ago
parent
commit
d729e84aeb

+ 5
- 0
.idea/codeStyles/codeStyleConfig.xml View File

1
+<component name="ProjectCodeStyleConfiguration">
2
+  <state>
3
+    <option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
4
+  </state>
5
+</component>

+ 2
- 0
src/Contracts/PaymentGatewayDriver.php View File

14
     public function verifyGatewayReturn(Request $request): bool;
14
     public function verifyGatewayReturn(Request $request): bool;
15
 
15
 
16
     public function verifyGatewayCallback(Request $request, Response &$response = null): bool;
16
     public function verifyGatewayCallback(Request $request, Response &$response = null): bool;
17
+
18
+    public function getBillIdFromRequest(Request $request);
17
 }
19
 }

+ 1
- 0
src/Facade/Payment.php View File

18
  * @method static string createPaymentURL(PayableEntity $payable, array $options = [])
18
  * @method static string createPaymentURL(PayableEntity $payable, array $options = [])
19
  * @method static bool verifyGatewayReturn(Request $request)
19
  * @method static bool verifyGatewayReturn(Request $request)
20
  * @method static bool verifyGatewayCallback(Request $request, Response &$response = null)
20
  * @method static bool verifyGatewayCallback(Request $request, Response &$response = null)
21
+ * @method static string|null getBillIdFromRequest(Request $request)
21
  */
22
  */
22
 class Payment extends Facade
23
 class Payment extends Facade
23
 {
24
 {

Loading…
Cancel
Save