Serializer
5 years ago
Curl.php
5 years ago
Encoder.php
4 years ago
Environment.php
5 years ago
HttpClient.php
4 years ago
HttpException.php
4 years ago
HttpRequest.php
5 years ago
HttpResponse.php
4 years ago
IOException.php
5 years ago
Injector.php
4 years ago
Serializer.php
5 years ago
Environment.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | namespace PayPalHttp; |
| 4 | |
| 5 | /** |
| 6 | * Interface Environment |
| 7 | * @package PayPalHttp |
| 8 | * |
| 9 | * Describes a domain that hosts a REST API, against which an HttpClient will make requests. |
| 10 | * @see HttpClient |
| 11 | */ |
| 12 | interface Environment |
| 13 | { |
| 14 | /** |
| 15 | * @return string |
| 16 | */ |
| 17 | public function baseUrl(); |
| 18 | } |
| 19 |