]> git.mxchange.org Git - friendica.git/blob - src/Worker/UpdateServerDirectory.php
fd5ee0534ba0edc3a74a4d3d40e01d3a8ea0726a
[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\Model\GServer;
9
10 class UpdateServerDirectory
11 {
12         /**
13          * Query the given server for their users
14          * @param string $gserver Server URL
15          */
16         public static function execute($gserver)
17         {
18                 GServer::updateDirectory($gserver);
19                 return;
20         }
21 }