| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class TranslationCreated |
||
| 8 | { |
||
| 9 | public $translation; |
||
| 10 | public $wasRecentlyCreated; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * TranslationCreated constructor. |
||
| 14 | * @param TranslationInterface $translation |
||
| 15 | * @param bool $wasRecentlyCreated |
||
| 16 | */ |
||
| 17 | 9 | public function __construct(TranslationInterface $translation, bool $wasRecentlyCreated) |
|
| 23 |