"UpdateSuggestions" added

This commit is contained in:
Michael 2019-12-20 20:49:09 +00:00
parent a1ad549e0b
commit bf852cc096
3 changed files with 18 additions and 4 deletions

View file

@ -0,0 +1,17 @@
<?php
/**
* @file src/Worker/UpdateSuggestions.php
*/
namespace Friendica\Worker;
use Friendica\Core\Logger;
use Friendica\Model\GContact;
class UpdateSuggestions
{
// Discover other servers for their contacts.
public static function execute()
{
GContact::updateSuggestions();
}
}