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

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


Middleware:

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