View file ProForum/Files/application/app/Http/Controllers/Gateway/PaypalSdk/Core/PayPalEnvironment.php
<?php
namespace App\Http\Controllers\Gateway\PaypalSdk\Core;
use App\Http\Controllers\Gateway\PaypalSdk\PayPalHttp\Environment;
abstract class PayPalEnvironment implements Environment
{
private $clientId;
private $clientSecret;
public function __construct($clientId, $clientSecret)
{
$this->clientId = $clientId;
$this->clientSecret = $clientSecret;
}
public function authorizationString()
{
return base64_encode($this->clientId . ":" . $this->clientSecret);
}
}