| 1 | <?php |
||
| 15 | class Browser |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var Client |
||
| 19 | */ |
||
| 20 | private $client; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var ResponseRepair |
||
| 24 | */ |
||
| 25 | private $repair; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | private $host; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var string |
||
| 34 | */ |
||
| 35 | private $app_client; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @param Client $client |
||
| 39 | * @param ResponseRepair $repair |
||
| 40 | * @param string $host |
||
| 41 | * @param string $app_client |
||
| 42 | */ |
||
| 43 | 1 | public function __construct(Client $client, ResponseRepair $repair, $host, $app_client) |
|
| 50 | |||
| 51 | /** |
||
| 52 | * @param string $path |
||
| 53 | * @param array $options |
||
| 54 | * |
||
| 55 | * @return string |
||
| 56 | */ |
||
| 57 | 1 | public function get($path, array $options = []) |
|
| 70 | } |
||
| 71 |