Total Complexity | 1 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | trait WebHooksVerification |
||
6 | { |
||
7 | /** |
||
8 | * Verify a web hook from PayPal. |
||
9 | * |
||
10 | * @param array $data |
||
11 | * |
||
12 | * @throws \Throwable |
||
13 | * |
||
14 | * @return array|\Psr\Http\Message\StreamInterface|string |
||
15 | * |
||
16 | * @see https://developer.paypal.com/docs/api/webhooks/v1/#verify-webhook-signature_post |
||
17 | */ |
||
18 | public function verifyWebHook(array $data) |
||
29 |