1 | <?php namespace Anomaly\PreferencesModule\Preference\Listener; |
||
15 | class ConfigureSystem |
||
16 | { |
||
17 | |||
18 | /** |
||
19 | * The config repository. |
||
20 | * |
||
21 | * @var Repository |
||
22 | */ |
||
23 | protected $config; |
||
24 | |||
25 | /** |
||
26 | * The preferences repository. |
||
27 | * |
||
28 | * @var PreferenceRepositoryInterface |
||
29 | */ |
||
30 | protected $preferences; |
||
31 | |||
32 | /** |
||
33 | * Create a new ConfigureSystem instance. |
||
34 | * |
||
35 | * @param PreferenceRepositoryInterface $preferences |
||
36 | * @param Repository $config |
||
37 | */ |
||
38 | public function __construct(PreferenceRepositoryInterface $preferences, Repository $config) |
||
43 | |||
44 | |||
45 | /** |
||
46 | * Handle the event. |
||
47 | */ |
||
48 | public function handle() |
||
55 | } |
||
56 |