friendica-github/src/Worker/UpdateServerDirectory.php

22 lines
365 B
PHP
Raw Normal View History

2019-12-20 20:37:21 +00:00
<?php
/**
* @file src/Worker/UpdateServerDirectory.php
*/
namespace Friendica\Worker;
use Friendica\Core\Logger;
2019-12-21 06:39:22 +00:00
use Friendica\Model\GServer;
2019-12-20 20:37:21 +00:00
2019-12-20 21:27:49 +00:00
class UpdateServerDirectory
2019-12-20 20:37:21 +00:00
{
2019-12-21 20:18:44 +00:00
/**
* Query the given server for their users
* @param string $gserver Server URL
*/
2019-12-21 06:39:22 +00:00
public static function execute($gserver)
2019-12-20 20:37:21 +00:00
{
2019-12-21 06:39:22 +00:00
GServer::updateDirectory($gserver);
2019-12-20 20:37:21 +00:00
return;
}
}