| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class MissingTranslationCategoryEvent |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @param string $category Category that is missing. |
||
| 14 | */ |
||
| 15 | 3 | public function __construct(private string $category) |
|
| 16 | { |
||
| 17 | 3 | } |
|
| 18 | |||
| 19 | /** |
||
| 20 | * @return string Category that is missing. |
||
| 21 | */ |
||
| 22 | 1 | public function getCategory(): string |
|
| 25 | } |
||
| 26 | } |
||
| 27 |