| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 3.0416 |
| Changes | 0 | ||
| 1 | <?php |
||
| 109 | 1 | protected static function matchCase($value, $comparison) |
|
| 110 | { |
||
| 111 | 1 | $functions = ['mb_strtolower', 'mb_strtoupper', 'ucfirst', 'ucwords']; |
|
| 112 | |||
| 113 | 1 | foreach ($functions as $function) { |
|
| 114 | 1 | if ($function($comparison) === $comparison) { |
|
| 115 | 1 | return $function($value); |
|
| 116 | } |
||
| 117 | } |
||
| 118 | |||
| 119 | return $value; |
||
| 120 | } |
||
| 121 | } |
||
| 122 |