friendica/src/Worker/UpdateServerDirectory.php
2019-12-20 21:27:49 +00:00

19 lines
354 B
PHP

<?php
/**
* @file src/Worker/UpdateServerDirectory.php
*/
namespace Friendica\Worker;
use Friendica\Core\Logger;
use Friendica\Protocol\PortableContact;
class UpdateServerDirectory
{
// Discover the given server id for their contacts
public static function execute($gserverid)
{
PortableContact::discoverSingleServer($gserverid);
return;
}
}