| Total Complexity | 4 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | final class MissingTranslationEvent |
||
| 11 | { |
||
| 12 | private string $category; |
||
| 13 | private string $language; |
||
| 14 | private string $message; |
||
| 15 | |||
| 16 | 13 | public function __construct(string $category, string $language, string $message) |
|
| 21 | 13 | } |
|
| 22 | |||
| 23 | 1 | public function getCategory(): string |
|
| 24 | { |
||
| 25 | 1 | return $this->category; |
|
| 26 | } |
||
| 27 | |||
| 28 | 1 | public function getLanguage(): string |
|
| 31 | } |
||
| 32 | |||
| 33 | 1 | public function getMessage(): string |
|
| 36 | } |
||
| 37 | } |
||
| 38 |