| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | 525 | public function build() : Inflector |
|
| 30 | { |
||
| 31 | 525 | $singularInflector = $this->singularInflector ?? $this->createDefaultSingularInflector(); |
|
| 32 | 525 | $pluralInflector = $this->pluralInflector ?? $this->createDefaultPluralInflector(); |
|
| 33 | |||
| 34 | 525 | return new Inflector($singularInflector, $pluralInflector); |
|
| 35 | } |
||
| 51 |