| 1 | <?php |
||
| 28 | class SettingsManager { |
||
| 29 | |||
| 30 | /** @var IConfig */ |
||
| 31 | private $config; |
||
| 32 | |||
| 33 | private $defaultSetting = 'yes'; |
||
| 34 | |||
| 35 | public function __construct(IConfig $config) { |
||
| 38 | |||
| 39 | /** |
||
| 40 | * should the password for a mail share be send to the recipient |
||
| 41 | * |
||
| 42 | * @return bool |
||
| 43 | */ |
||
| 44 | public function sendPasswordByMail() { |
||
| 48 | |||
| 49 | } |
||
| 50 |