Upgrade from 4.x to 5.x: Utility PhoneNumber class
masterSeveral methods have been removed or changed in the PhoneNumber class:
make()removed: Use thephone()helper or thenew PhoneNumber()constructor instead.ofCountry()removed: The country must now be specified during object construction.numberLooksInternational()removed: This undocumented method is no longer available.
// Instead of PhoneNumber::make($number, $country)
phone($number, $country)
// or
new PhoneNumber($number, $country)
// Instead of $object->ofCountry($country)
$object = new PhoneNumber($number, $country);