1 | <?php |
||
5 | trait SettingsImporter |
||
6 | { |
||
7 | /** |
||
8 | * Dictates any settings that a class may need access to |
||
9 | * |
||
10 | * @return array |
||
11 | */ |
||
12 | 488 | public function settings() |
|
16 | |||
17 | /** |
||
18 | * Import the setting into the class |
||
19 | * |
||
20 | * @param \League\CLImate\Settings\SettingsInterface $setting |
||
21 | */ |
||
22 | 44 | public function importSetting($setting) |
|
32 | } |
||
33 |