]> git.mxchange.org Git - friendica.git/blob - src/Worker/UpdateSuggestions.php
Added "DiscoverContacts"
[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         // Discover other servers for their contacts.
13         public static function execute()
14         {
15                 GContact::updateSuggestions();
16         }
17 }