mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-30 20:49:20 +03:00
8 lines
180 B
PHP
8 lines
180 B
PHP
<?php
|
|
|
|
namespace RainLoop\Providers\Suggestions;
|
|
|
|
interface ISuggestions
|
|
{
|
|
public function Process(\RainLoop\Model\Account $oAccount, string $sQuery, int $iLimit = 20) : array;
|
|
}
|