snappymail/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/Settings/ISettings.php
djmaze 2cada68f41 Privacy/GDPR friendly version (removed: Social, Gravatar, Facebook, Google, Twitter, DropBox, OwnCloud)
Also removed: POP3, OAuth2 and update feature
Added: admin password_hash/password_verify
Requires: PHP 7.3+
Replaced: CRLF with LF
Replaced: pclZip with ZipArchive
2020-03-09 17:04:17 +01:00

12 lines
289 B
PHP

<?php
namespace RainLoop\Providers\Settings;
interface ISettings
{
public function Load(\RainLoop\Model\Account $oAccount) : array;
public function Save(\RainLoop\Model\Account $oAccount, array $aSettings) : bool;
public function Delete(\RainLoop\Model\Account $oAccount) : bool;
}