Skip to content
This repository has been archived by the owner on Dec 11, 2020. It is now read-only.

Commit

Permalink
Fix incorrect coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
bepsvpt committed Jan 9, 2016
1 parent 9eddd10 commit a5e0c8f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Faker/Provider/zh_TW/Text.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,14 +169,19 @@ protected static function utf8Encoding($text)
switch (true) {
case $ord > 251:
$temp .= $chars[++$i];
// no break
case $ord > 247:
$temp .= $chars[++$i];
// no break
case $ord > 239:
$temp .= $chars[++$i];
// no break
case $ord > 223:
$temp .= $chars[++$i];
// no break
case $ord > 191:
$temp .= $chars[++$i];
// no break
}

$encoding[] = $temp;
Expand Down

0 comments on commit a5e0c8f

Please sign in to comment.