1
1
Fork 0

"FetchPoCo" added

This commit is contained in:
Michael 2019-12-20 21:21:25 +00:00
commit 3c4f44a4ab
3 changed files with 18 additions and 14 deletions

17
src/Worker/FetchPoCo.php Normal file
View file

@ -0,0 +1,17 @@
<?php
/**
* @file src/Worker/FetchPoCo.php
*/
namespace Friendica\Worker;
use Friendica\Core\Logger;
use Friendica\Protocol\PortableContact;
class FetchPoCo
{
// Load POCO data from a given POCO address
public static function execute($cid, $uid, $zcid, $url)
{
PortableContact::load($cid, $uid, $zcid, $url);
}
}