| 1 | <?php |
||
| 8 | class GeoPhone |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var resource |
||
| 12 | */ |
||
| 13 | protected $fileHandle; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param string $filename |
||
| 17 | */ |
||
| 18 | public function __construct($filename = 'data.csv') |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param String $phoneNumber A phone number in any format |
||
| 25 | * @return LookupResponse |
||
| 26 | * City and state are empty when not found. |
||
| 27 | */ |
||
| 28 | public function lookupNumber($phoneNumber): LookupResponse |
||
| 42 | } |
||
| 43 |