Skip to content

Commit

Permalink
Fixing issue with hasCountryCodeSource
Browse files Browse the repository at this point in the history
  • Loading branch information
tnory56 committed Apr 29, 2016
1 parent 25c37f0 commit 37a4e90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libphonenumber/PhoneNumber.php
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ public function __toString()
if ($this->hasExtension()) {
$outputString .= ' Extension: ' . $this->extension;
}
if ($this->hasCountryCode()) {
if ($this->hasCountryCodeSource()) {
$outputString .= ' Country Code Source: ' . $this->countryCodeSource;
}
if ($this->hasPreferredDomesticCarrierCode()) {
Expand Down

0 comments on commit 37a4e90

Please sign in to comment.