2017-11-19 17:59:37 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Worker/ProfileUpdate.php
|
|
|
|
* @brief Send updated profile data to Diaspora
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
|
|
|
use Friendica\Protocol\Diaspora;
|
|
|
|
|
|
|
|
class ProfileUpdate {
|
|
|
|
public static function execute($uid = 0) {
|
|
|
|
if (empty($uid)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-23 20:01:58 +01:00
|
|
|
Diaspora::sendProfile($uid);
|
2017-11-19 17:59:37 +01:00
|
|
|
}
|
|
|
|
}
|