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