friendica/src/Worker/UpdateServerDirectory.php

19 lines
354 B
PHP
Raw Normal View History

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