We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2997abe commit e90a636Copy full SHA for e90a636
src/TaskHandler.php
@@ -78,11 +78,7 @@ protected function validateToken($openIdToken)
78
*/
79
private function captureTask()
80
{
81
- $input = file_get_contents('php://input');
82
-
83
- if (!$input) {
84
- $input = request('input') ?: false;
85
- }
+ $input = (string) (request()->getContent());
86
87
if (!$input) {
88
throw new CloudTasksException('Could not read incoming task');
0 commit comments