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