| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 47 | public function build() |
||
| 48 | { |
||
| 49 | if (!filter_var($this->uri, FILTER_VALIDATE_URL)) { |
||
| 50 | throw new InvalidArgumentException('Please provide valid base URI.'); |
||
| 51 | } |
||
| 52 | |||
| 53 | return new NativeHttpClient($this->uri, $this->token, new NativeArgumentsConverter(), new NativeResponseParser()); |
||
| 54 | } |
||
| 55 | } |
||
| 56 |