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