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:
Toir Tuychiev
2021-10-08 12:02:19 +05:00
committed by GitHub
parent 71892888b0
commit 728e910baf
6 changed files with 14 additions and 15 deletions

View File

@ -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;
// }
}