| Conditions | 2 |
| Paths | 2 |
| Total Lines | 5 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | public function trans( string $messageKey, array $parameters = [] ): string { |
||
| 26 | if ( !isset( $this->messages[$messageKey] ) ) { |
||
| 27 | throw new \InvalidArgumentException( "Unknown translation key: $messageKey" ); |
||
| 28 | } |
||
| 29 | return str_replace( array_keys( $parameters ), array_values( $parameters ), $this->messages[$messageKey] ); |
||
| 30 | } |
||
| 32 | } |