Merge branch '1.x' of github.com:beyondcode/laravel-websockets

This commit is contained in:
Alex Renoki 2021-02-24 22:12:05 +02:00
commit efb3aa82b9
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@
"illuminate/queue": "^6.3|^7.0|^8.0",
"illuminate/routing": "^6.3|^7.0|^8.0",
"illuminate/support": "^6.3|^7.0|^8.0",
"pusher/pusher-php-server": "^4.0",
"pusher/pusher-php-server": "^4.0|^5.0",
"react/promise": "^2.0",
"symfony/http-kernel": "^4.0|^5.0",
"symfony/psr-http-message-bridge": "^1.1|^2.0"

View File

@ -60,6 +60,6 @@ class TriggerEvent extends Controller
]);
}
return $request->json()->all();
return (object) [];
}
}