Privacy/GDPR friendly version (removed: Social, Gravatar, Facebook, Google, Twitter, DropBox, OwnCloud)

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
This commit is contained in:
djmaze 2020-03-09 17:04:17 +01:00
parent 15ceddc202
commit 2cada68f41
293 changed files with 23728 additions and 85420 deletions

View file

@ -5,11 +5,7 @@ namespace RainLoop\Providers\Suggestions;
interface ISuggestions
{
/**
* @param \RainLoop\Model\Account $oAccount
* @param string $sQuery
* @param int $iLimit = 20
*
* @return array [['email@1', 'name_1'], ['email@2', 'name_2']]
*/
public function Process($oAccount, $sQuery, $iLimit = 20);
}
public function Process(\RainLoop\Model\Account $oAccount, string $sQuery, int $iLimit = 20);
}