mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 20:19:22 +03:00
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
12 lines
289 B
PHP
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;
|
|
}
|