1 | <?php |
||
22 | class IntegrationTest extends ProviderIntegrationTest |
||
23 | { |
||
24 | protected $testIpv4 = false; |
||
25 | protected $testIpv6 = false; |
||
26 | |||
27 | protected function createProvider(HttpClient $httpClient) |
||
28 | { |
||
29 | return new ArcGISOnline($httpClient); |
||
30 | } |
||
31 | |||
32 | protected function getCacheDir() |
||
33 | { |
||
34 | return __DIR__.'/.cached_responses'; |
||
35 | } |
||
36 | |||
37 | protected function getApiKey() |
||
38 | { |
||
39 | return null; |
||
40 | } |
||
41 | } |
||
42 |