Skip to content

Commit

Permalink
Add catch all else block to pass any unproccessed values to the metho…
Browse files Browse the repository at this point in the history
…d to fix #30
  • Loading branch information
alhoqbani committed Jul 15, 2017
1 parent b2b2054 commit 85e0d10
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ArUtil/I18N/Arabic.php
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,8 @@ public function __call($methodName, $arguments)
$value[$key] = iconv($this->getInputCharset(), 'utf-8', $element);
}
$params[$name] = $value;
} else {
$params[$name] = $value;
}
}
}
Expand Down

0 comments on commit 85e0d10

Please sign in to comment.