Skip to content

Commit 25545d6

Browse files
committed
yh
1 parent ac3056e commit 25545d6

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/API/Notify.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,12 @@ public function handle(): Response
1313
{
1414
$client = new NotifyClient($this->config);
1515

16-
$request = new NotifyRequest(request('data'), request('mess'), request('timestamp'), request('sign'));
16+
$request = new NotifyRequest(
17+
(string) request('data'),
18+
(string) request('mess'),
19+
(string) request('timestamp'),
20+
(string) request('sign')
21+
);
1722

1823
$response = $client->verifyAndDecrypt($request);
1924

0 commit comments

Comments
 (0)