mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-26 06:15:19 +08:00
Typo PHPDoc (#18939)
Typo PHPDoc Co-authored-by: toir427 <t.tuychiev@safenetpay.com> Co-authored-by: Bizley <pawel@positive.codes>
This commit is contained in:
@ -69,11 +69,11 @@ class Utf8Controller extends Controller
|
||||
}
|
||||
if ($ord < 0x0020 && $ord != 0x000A && $ord != 0x0009 ||
|
||||
0x0080 <= $ord && $ord < 0x009F) {
|
||||
$this->found('CONTROL CHARARCTER', $c, $line, $pos, $file);
|
||||
$this->found('CONTROL CHARACTER', $c, $line, $pos, $file);
|
||||
continue;
|
||||
}
|
||||
// if ($ord > 0x009F) {
|
||||
// $this->found("NON ASCII CHARARCTER", $c, $line, $pos, $file);
|
||||
// $this->found("NON ASCII CHARACTER", $c, $line, $pos, $file);
|
||||
// continue;
|
||||
// }
|
||||
}
|
||||
|
Reference in New Issue
Block a user