http_response_code(404);
die();
how to use this code in slim v4 to make it works?
$app->get('/hello/{name}', function (Request $request, Response $response, $args) {
$name = $args['name'];
if($name=="world"){
$response->getBody()->write("Hello, $name");
}else{
http_response_code(404);
die();
}
return $response;
});