1 | <?php |
||
7 | class TranslationHasBeenSet |
||
8 | { |
||
9 | /** @var \Spatie\Translatable\Translatable */ |
||
10 | public $model; |
||
11 | |||
12 | /** @var string */ |
||
13 | public $attributeName; |
||
14 | |||
15 | /** @var string */ |
||
16 | public $locale; |
||
17 | |||
18 | public $oldValue; |
||
19 | public $newValue; |
||
20 | |||
21 | public function __construct(Translatable $model, string $attributeName, string $locale, $oldValue, $newValue) |
||
32 | } |
||
33 |