1 | <?php |
||
10 | class LookupResponse implements ResponseData { |
||
11 | protected $city; |
||
12 | protected $state; |
||
13 | |||
14 | /** |
||
15 | * LookupResponse constructor. |
||
16 | * @param string $city |
||
17 | * @param string $state |
||
18 | */ |
||
19 | public function __construct(string $city, string $state) { |
||
23 | |||
24 | |||
25 | /** |
||
26 | * @return array |
||
27 | */ |
||
28 | public function getAsAssociativeArray(): array { |
||
36 | } |
||
37 |