mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-30 12:39:20 +03:00
14 lines
332 B
PHP
14 lines
332 B
PHP
<?php
|
|
|
|
namespace RainLoop\Providers\Suggestions;
|
|
|
|
class TestSuggestions implements \RainLoop\Providers\Suggestions\ISuggestions
|
|
{
|
|
public function Process(\RainLoop\Model\Account $oAccount, string $sQuery, int $iLimit = 20) : array
|
|
{
|
|
return array(
|
|
array($oAccount->Email(), ''),
|
|
array('email@domain.com', 'name')
|
|
);
|
|
}
|
|
}
|