Skip to content
This repository has been archived by the owner on Feb 7, 2024. It is now read-only.

Commit

Permalink
Merge pull request #698 from Koozza/feat-add-php-pusher-5-support
Browse files Browse the repository at this point in the history
[1.x] Add support for php-pusher 5.x
  • Loading branch information
rennokki authored Feb 24, 2021
2 parents e9b9cc4 + 6e020af commit 5cda453
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"illuminate/http": "^6.0|^7.0|^8.0",
"illuminate/routing": "^6.0|^7.0|^8.0",
"illuminate/support": "^6.0|^7.0|^8.0",
"pusher/pusher-php-server": "^3.0|^4.0",
"pusher/pusher-php-server": "^3.0|^4.0|^5.0",
"react/dns": "^1.1",
"react/http": "^1.1",
"symfony/http-kernel": "^4.0|^5.0",
Expand Down
2 changes: 1 addition & 1 deletion src/HttpApi/Controllers/TriggerEventController.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ public function __invoke(Request $request)
StatisticsLogger::apiMessage($request->appId);
}

return $request->json()->all();
return (object) [];
}
}

0 comments on commit 5cda453

Please sign in to comment.