mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-06 14:04:24 +08:00
21 lines
390 B
PHP
21 lines
390 B
PHP
|
<?php
|
||
|
|
||
|
namespace RainLoop\Providers\Settings;
|
||
|
|
||
|
interface SettingsInterface
|
||
|
{
|
||
|
/**
|
||
|
* @param \RainLoop\Account $oAccount
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public function Load(\RainLoop\Account $oAccount);
|
||
|
|
||
|
/**
|
||
|
* @param \RainLoop\Account $oAccount
|
||
|
* @param array $aSettings
|
||
|
*
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function Save(\RainLoop\Account $oAccount, array $aSettings);
|
||
|
}
|