1 | <?php namespace Anomaly\SettingsModule\Setting\Listener; |
||
13 | class DeleteModuleSettings |
||
14 | { |
||
15 | |||
16 | /** |
||
17 | * The settings repository. |
||
18 | * |
||
19 | * @var SettingRepositoryInterface |
||
20 | */ |
||
21 | protected $settings; |
||
22 | |||
23 | /** |
||
24 | * Create a new DeleteModuleSettings instance. |
||
25 | * |
||
26 | * @param SettingRepositoryInterface $settings |
||
27 | */ |
||
28 | public function __construct(SettingRepositoryInterface $settings) |
||
32 | |||
33 | /** |
||
34 | * Handle the event. |
||
35 | * |
||
36 | * @param ModuleWasUninstalled $event |
||
37 | */ |
||
38 | public function handle(ModuleWasUninstalled $event) |
||
46 | } |
||
47 |