We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4043c89 commit 100bdf9Copy full SHA for 100bdf9
src/Route/food-item.routes.php
@@ -11,7 +11,7 @@ enum FoodItemAction: string
11
public function getResponse(): string
12
{
13
$postBody = file_get_contents('php://input');
14
- $postBody = json_decode($postBody);
+ $postBody = json_decode($postBody); // unused for now
15
16
// Ternary conditional operator operator
17
$itemId = $_REQUEST['id'] ?? ''; // using the null coalescing operator
0 commit comments