19 lines
296 B
PHP
19 lines
296 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace 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();
|
||
|
}
|