1 | <?php |
||
10 | class LookupResponse |
||
11 | { |
||
12 | protected $city; |
||
13 | protected $state; |
||
14 | |||
15 | /** |
||
16 | * LookupResponse constructor. |
||
17 | * @param string $city |
||
18 | * @param string $state |
||
19 | */ |
||
20 | public function __construct(string $city, string $state) |
||
25 | |||
26 | |||
27 | /** |
||
28 | * @return APIResponseData |
||
29 | */ |
||
30 | public function getAsResponseData(): APIResponseData |
||
39 | } |
||
40 |