friendica/src/Worker/UpdateSuggestions.php

20 lines
301 B
PHP
Raw Normal View History

2019-12-20 21:49:09 +01:00
<?php
/**
* @file src/Worker/UpdateSuggestions.php
*/
namespace Friendica\Worker;
use Friendica\Core\Logger;
use Friendica\Model\GContact;
class UpdateSuggestions
{
2019-12-21 21:18:44 +01:00
/**
* Discover other servers for their contacts.
*/
2019-12-20 21:49:09 +01:00
public static function execute()
{
GContact::updateSuggestions();
}
}