]> git.mxchange.org Git - friendica.git/blob - src/Worker/UpdateSuggestions.php
Added documentation
[friendica.git] / src / Worker / UpdateSuggestions.php
1 <?php
2 /**
3  * @file src/Worker/UpdateSuggestions.php
4  */
5 namespace Friendica\Worker;
6
7 use Friendica\Core\Logger;
8 use Friendica\Model\GContact;
9
10 class UpdateSuggestions
11 {
12         /**
13          * Discover other servers for their contacts.
14          */
15         public static function execute()
16         {
17                 GContact::updateSuggestions();
18         }
19 }