mirror of
https://github.com/friendica/friendica
synced 2024-11-11 15:42:53 +00:00
609a4de5d0
This basically completes coding standards changes for the entire src directory, with the exception of App.php
19 lines
303 B
PHP
19 lines
303 B
PHP
<?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;
|
|
}
|
|
|
|
Diaspora::sendProfile($uid);
|
|
}
|
|
}
|