| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 38 | 265 | public function inflect(string $word) : string |
|
| 39 | { |
||
| 40 | 265 | $lowerWord = strtolower($word); |
|
| 41 | |||
| 42 | 265 | if (isset($this->substitutions[$lowerWord])) { |
|
| 43 | 104 | return mb_substr($word, 0, 1) . mb_substr($this->substitutions[$lowerWord]->getTo()->getWord(), 1); |
|
| 44 | } |
||
| 45 | |||
| 46 | 161 | return $word; |
|
| 47 | } |
||
| 49 |