snappymail/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/Suggestions/SuggestionsInterface.php
RainLoop Team 000711086a Suggestion Provider
OwnCloud Suggestion Driver
2015-02-12 10:35:31 +04:00

15 lines
No EOL
275 B
PHP

<?php
namespace RainLoop\Providers\Suggestions;
interface SuggestionsInterface
{
/**
* @param \RainLoop\Model\Account $oAccount
* @param string $sQuery
* @param int $iLimit = 20
*
* @return array
*/
public function Process($oAccount, $sQuery, $iLimit = 20);
}