1 | <?php namespace Modules\Setting\Events; |
||
3 | class SettingWasUpdated |
||
4 | { |
||
5 | /** |
||
6 | * @var string The setting name |
||
7 | */ |
||
8 | public $name; |
||
9 | /** |
||
10 | * @var string|array |
||
11 | */ |
||
12 | public $values; |
||
13 | /** |
||
14 | * @var string|array Containing the old values |
||
15 | */ |
||
16 | public $oldValues; |
||
17 | /** |
||
18 | * @var bool |
||
19 | */ |
||
20 | public $isTranslatable; |
||
21 | |||
22 | public function __construct($name, $isTranslatable, $values, $oldValues = null) |
||
29 | } |
||
30 |