| 1 | <?php |
||
| 4 | class GlobalWeatherClient |
||
| 5 | { |
||
| 6 | /** |
||
| 7 | * @var string |
||
| 8 | */ |
||
| 9 | private $wsdl; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @var integer |
||
| 13 | */ |
||
| 14 | private $timeout; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param array $configuration |
||
| 18 | */ |
||
| 19 | public function __construct(array $configuration) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return \SoapClient |
||
| 27 | * @throws \Exception |
||
| 28 | */ |
||
| 29 | public function connect() |
||
| 36 | } |
||
| 37 |