Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
21 | public function __construct(Translatable $model, string $attributeName, string $locale, $oldValue, $newValue) |
||
22 | { |
||
23 | $this->model = $model; |
||
24 | |||
25 | $this->attributeName = $attributeName; |
||
26 | |||
27 | $this->locale = $locale; |
||
28 | |||
29 | $this->oldValue = $oldValue; |
||
30 | $this->newValue = $newValue; |
||
31 | } |
||
32 | } |
||
33 |