1 | <?php namespace Anomaly\SettingsModule\Setting\Event; |
||
11 | class SettingsWereSaved |
||
12 | { |
||
13 | |||
14 | /** |
||
15 | * The setting's namespace. |
||
16 | * |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $namespace; |
||
20 | |||
21 | /** |
||
22 | * Create a new SettingsWereSaved instance. |
||
23 | * |
||
24 | * @param string $namespace |
||
25 | */ |
||
26 | public function __construct($namespace) |
||
30 | |||
31 | /** |
||
32 | * Get the namespace. |
||
33 | * |
||
34 | * @return string |
||
35 | */ |
||
36 | public function getNamespace() |
||
40 | } |
||
41 |