add(new \Slim\Extras\Middleware\FeatherBBAuth()); * */ namespace FeatherBB\Middleware; /** * Middleware to change the header to Json */ class JsonHeader { public function __invoke($request, $response, $next) { $response = $response->withHeader('Content-type', 'application/json'); $response = $next($request, $response); return $response; } }