Skip to content

Commit

Permalink
Merge pull request #8 from instasent/hotfix/github7-missing-self
Browse files Browse the repository at this point in the history
Fix missing self
  • Loading branch information
luishdez authored Jan 6, 2019
2 parents 096a148 + 9829592 commit e5f73a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SMSCounter.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public function count($text)
public function detectEncoding($text, &$exChars)
{
if (!is_array($text)) {
$text = utf8ToUnicode($text);
$text = self::utf8ToUnicode($text);
}

$utf16Chars = array_diff($text, $this->getGsm7bitExMap());
Expand Down

0 comments on commit e5f73a8

Please sign in to comment.