View file ProForum/Files/application/app/Http/Controllers/Gateway/PaypalSdk/Core/GzipInjector.php

File size: 284B
<?php

namespace App\Http\Controllers\Gateway\PaypalSdk\Core;


use App\Http\Controllers\Gateway\PaypalSdk\PayPalHttp\Injector;

class GzipInjector implements Injector
{
    public function inject($httpRequest)
    {
        $httpRequest->headers["Accept-Encoding"] = "gzip";
    }
}