Merge pull request #698 from Koozza/feat-add-php-pusher-5-support

[1.x] Add support for php-pusher 5.x
This commit is contained in:
rennokki 2021-02-24 22:07:07 +02:00 committed by GitHub
commit 5cda453575
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@
"illuminate/http": "^6.0|^7.0|^8.0", "illuminate/http": "^6.0|^7.0|^8.0",
"illuminate/routing": "^6.0|^7.0|^8.0", "illuminate/routing": "^6.0|^7.0|^8.0",
"illuminate/support": "^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/dns": "^1.1",
"react/http": "^1.1", "react/http": "^1.1",
"symfony/http-kernel": "^4.0|^5.0", "symfony/http-kernel": "^4.0|^5.0",

View File

@ -31,6 +31,6 @@ class TriggerEventController extends Controller
StatisticsLogger::apiMessage($request->appId); StatisticsLogger::apiMessage($request->appId);
} }
return $request->json()->all(); return (object) [];
} }
} }