| 1 | <?php |
||
| 9 | abstract class HostClientCore implements ClientInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Host values |
||
| 13 | * @var string[] |
||
| 14 | */ |
||
| 15 | protected $host; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Base uri |
||
| 19 | * @var string |
||
| 20 | */ |
||
| 21 | protected $base; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Effective uri |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | protected $effective; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * HostClient constructor. |
||
| 31 | * |
||
| 32 | * @param string $base |
||
| 33 | * @param string $effective |
||
| 34 | * @param string[] $host |
||
| 35 | */ |
||
| 36 | public function __construct($base, $effective, array $host) |
||
| 42 | } |
||
| 43 |