v1.3.5.459

This commit is contained in:
RainLoop Team 2013-10-26 18:50:47 +04:00
parent 026c38e5d3
commit c62459b40e
433 changed files with 396 additions and 309 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);
}