mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 21:49:21 +03:00
Also removed: POP3, OAuth2 and update feature Added: admin password_hash/password_verify Requires: PHP 7.3+ Replaced: CRLF with LF Replaced: pclZip with ZipArchive
11 lines
247 B
PHP
11 lines
247 B
PHP
<?php
|
|
|
|
namespace RainLoop\Providers\Suggestions;
|
|
|
|
interface ISuggestions
|
|
{
|
|
/**
|
|
* @return array [['email@1', 'name_1'], ['email@2', 'name_2']]
|
|
*/
|
|
public function Process(\RainLoop\Model\Account $oAccount, string $sQuery, int $iLimit = 20);
|
|
}
|