v1.2.10.427

This commit is contained in:
RainLoop Team 2013-10-07 00:19:50 +04:00
parent b1032fd365
commit c658c5af1f
396 changed files with 644 additions and 187 deletions

View file

@ -0,0 +1,14 @@
<?php
namespace RainLoop\Providers\Suggestions;
interface SuggestionsInterface
{
/**
* @param \RainLoop\Account $oAccount
* @param string $sQuery
*
* @return array
*/
public function Process(\RainLoop\Account $oAccount, $sQuery);
}