]> git.mxchange.org Git - friendica.git/blob - src/Worker/UpdateServerDirectory.php
"CheckServer" added
[friendica.git] / src / Worker / UpdateServerDirectory.php
1 <?php
2 /**
3  * @file src/Worker/UpdateServerDirectory.php
4  */
5 namespace Friendica\Worker;
6
7 use Friendica\Core\Logger;
8 use Friendica\Protocol\PortableContact;
9
10 class UpdateServerDirectory
11 {
12         // Discover the given server id for their contacts
13         public static function execute($gserverid)
14         {
15                 PortableContact::discoverSingleServer($gserverid);
16                 return;
17         }
18 }