View file ProForum/Files/application/app/Http/Controllers/Gateway/PaypalSdk/PayPalHttp/Environment.php

File size: 335B
<?php

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

/**
 * Interface Environment
 * @package PayPalHttp
 *
 * Describes a domain that hosts a REST API, against which an HttpClient will make requests.
 * @see HttpClient
 */
interface Environment
{
    /**
     * @return string
     */
    public function baseUrl();
}