PHP Slim Framework v3 - 为响应设置全局内容类型

PHP Slim Framework v3 - Set global content-type for responses

有没有办法将内容类型设置为 'application/json' 以便在 SLIM 3 中全局响应?

我尝试了以下无效的方法:

$app->contentType('application/json');
$app->response->headers->set('Content-Type', 'application/json');

Middleware:

$app->add(function ($request, $response, $next) {
    return $response->withHeader('Content-Type', 'application/json');
});