mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-25 18:19:22 +03:00
15 lines
No EOL
275 B
PHP
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);
|
|
} |