| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 58 | public function __construct(string $name, int $base, int $exponent, string $suffix, string $singular, string $plural) |
||
| 59 | { |
||
| 60 | $this->name = $name; |
||
| 61 | $this->base = $base; |
||
| 62 | $this->exponent = $exponent; |
||
| 63 | $this->suffix = $suffix; |
||
| 64 | $this->singular = $singular; |
||
| 65 | $this->plural = $plural; |
||
| 66 | } |
||
| 103 |