v1.3.5.460

This commit is contained in:
RainLoop Team 2013-10-27 22:12:54 +04:00
parent c62459b40e
commit c4d3ef4ddd
432 changed files with 20 additions and 17 deletions

View file

@ -0,0 +1,21 @@
<?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);
}