Skip to content

Commit e5f73a8

Browse files
authored
Merge pull request #8 from instasent/hotfix/github7-missing-self
Fix missing self
2 parents 096a148 + 9829592 commit e5f73a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SMSCounter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ public function count($text)
173173
public function detectEncoding($text, &$exChars)
174174
{
175175
if (!is_array($text)) {
176-
$text = utf8ToUnicode($text);
176+
$text = self::utf8ToUnicode($text);
177177
}
178178

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

0 commit comments

Comments
 (0)