| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 45 | 527 | public function build() : Ruleset |
|
| 46 | { |
||
| 47 | 527 | $transformations = $this->transformations ?? new Transformations(...English\Inflectible::getSingular()); |
|
| 48 | 527 | $uninflected = $this->uninflected ?? new Patterns(...English\Uninflected::getSingular()); |
|
| 49 | 527 | $irregular = $this->irregular ?? $this->getDefaultIrregular(); |
|
| 50 | |||
| 51 | 527 | return new Ruleset($transformations, $uninflected, $irregular); |
|
| 52 | } |
||
| 61 |