| 1 | <?php |
||
| 17 | trait HttpInteraction |
||
| 18 | { |
||
| 19 | /** @var string */ |
||
| 20 | protected $baseUrl = 'http://routing_v1_2.app'; |
||
| 21 | |||
| 22 | /** @var float */ |
||
| 23 | protected $timeout = 2.0; |
||
| 24 | |||
| 25 | /** @var Client */ |
||
| 26 | protected $http; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param ResponseInterface $response |
||
| 30 | * @return ResponseInterface |
||
| 31 | */ |
||
| 32 | protected function getResponse(ResponseInterface $response) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * .... |
||
| 39 | * |
||
| 40 | * @inheritdoc |
||
| 41 | */ |
||
| 42 | public function setUp() |
||
| 49 | } |