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