]> git.mxchange.org Git - friendica.git/blob - src/Worker/FetchPoCo.php
Remove unused BBCode::scaleExternalImage parameters
[friendica.git] / src / Worker / FetchPoCo.php
1 <?php
2 /**
3  * @file src/Worker/FetchPoCo.php
4  */
5 namespace Friendica\Worker;
6
7 use Friendica\Core\Logger;
8 use Friendica\Protocol\PortableContact;
9
10 class FetchPoCo
11 {
12         /**
13          * Fetch PortableContacts from a given PoCo server address
14          *
15          * @param integer $cid  Contact ID
16          * @param integer $uid  User ID
17          * @param integer $zcid Global Contact ID
18          * @param integer $url  PoCo address that should be polled
19          */
20         public static function execute($cid, $uid, $zcid, $url)
21         {
22                 PortableContact::load($cid, $uid, $zcid, $url);
23         }
24 }