| 1 | <?php |
||
| 11 | class GuzzleClient |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * createClient. |
||
| 15 | * @param array $options |
||
| 16 | * @return Client |
||
| 17 | */ |
||
| 18 | public static function createClient($options = []) |
||
| 19 | { |
||
| 20 | $defaults = [ |
||
| 21 | 'handler' => new CurlMultiHandler(), |
||
| 22 | 'allow_redirects' => false, |
||
| 23 | ]; |
||
| 24 | |||
| 25 | $options = array_merge($defaults, $options); |
||
| 30 |