HttpClientChild.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Unirest\Test\Mocking; |
| 4 | |
| 5 | use Unirest\HttpClient; |
| 6 | |
| 7 | class HttpClientChild extends HttpClient |
| 8 | { |
| 9 | public function getTotalNumberOfConnections() |
| 10 | { |
| 11 | return $this->totalNumberOfConnections; |
| 12 | } |
| 13 | |
| 14 | public function resetHandle() |
| 15 | { |
| 16 | $this->initializeHandle(); |
| 17 | } |
| 18 | } |
| 19 |