Your IP : 3.135.241.191


Current Path : /home/lentoinv/test.lentoria.com/vendor/ankitpokhrel/tus-php/src/Middleware/
Upload File :
Current File : //home/lentoinv/test.lentoria.com/vendor/ankitpokhrel/tus-php/src/Middleware/GlobalHeaders.php

<?php

namespace TusPhp\Middleware;

use TusPhp\Request;
use TusPhp\Response;
use TusPhp\Tus\Server;

class GlobalHeaders implements TusMiddleware
{
    /**
     * {@inheritDoc}
     */
    public function handle(Request $request, Response $response)
    {
        $headers = [
            'X-Content-Type-Options' => 'nosniff',
            'Tus-Resumable' => Server::TUS_PROTOCOL_VERSION,
        ];

        $response->setHeaders($headers);
    }
}

?>