snappymail/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/Settings/SettingsInterface.php

21 lines
390 B
PHP
Raw Normal View History

2013-09-25 03:04:44 +08:00
<?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);
}