friendica/src/Worker/UpdateServerDirectory.php

19 lines
354 B
PHP
Raw Normal View History

2019-12-20 15:37:21 -05:00
<?php
/**
* @file src/Worker/UpdateServerDirectory.php
*/
namespace Friendica\Worker;
use Friendica\Core\Logger;
use Friendica\Protocol\PortableContact;
2019-12-20 16:27:49 -05:00
class UpdateServerDirectory
2019-12-20 15:37:21 -05:00
{
// Discover the given server id for their contacts
public static function execute($gserverid)
{
2019-12-20 16:27:49 -05:00
PortableContact::discoverSingleServer($gserverid);
2019-12-20 15:37:21 -05:00
return;
}
}