Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NamingConventions::isEqual(): minor simplification
No need to "translate" the ASCII characters from uppercase to lowercase, the PHP native `strcasecmp()` function can do the comparison correctly as it only compares ASCII letters in a case-insensitive way. Ref: https://www.php.net/manual/en/function.strcasecmp.php
- Loading branch information