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