Conditions | 1 |
Paths | 1 |
Total Lines | 21 |
Code Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9112 | 23 | public static function strcasecmp( |
|
9113 | string $str1, |
||
9114 | string $str2, |
||
9115 | string $encoding = 'UTF-8' |
||
9116 | ): int { |
||
9117 | 23 | return self::strcmp( |
|
9118 | 23 | self::strtocasefold( |
|
9119 | $str1, |
||
9120 | true, |
||
9121 | false, |
||
9122 | $encoding, |
||
9123 | null, |
||
9124 | false |
||
9125 | ), |
||
9126 | 23 | self::strtocasefold( |
|
9127 | $str2, |
||
9128 | true, |
||
9129 | false, |
||
9130 | $encoding, |
||
9131 | null, |
||
9132 | false |
||
9133 | ) |
||
13722 |