]> git.mxchange.org Git - friendica.git/blob - src/Worker/ProfileUpdate.php
Just some more fixed notice
[friendica.git] / src / Worker / ProfileUpdate.php
1 <?php
2 /**
3  * @file src/Worker/ProfileUpdate.php
4  * @brief Send updated profile data to Diaspora
5  */
6
7 namespace Friendica\Worker;
8
9 use Friendica\Protocol\Diaspora;
10
11 class ProfileUpdate {
12         public static function execute($uid = 0) {
13                 if (empty($uid)) {
14                         return;
15                 }
16
17                 Diaspora::sendProfile($uid);
18         }
19 }