friendica-github/src/Worker/UpdateSuggestions.php

22 lines
390 B
PHP
Raw Normal View History

2022-11-30 05:59:27 +00:00
<?php
2024-08-24 15:27:00 +02:00
// Copyright (C) 2010-2024, the Friendica project
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
2022-11-30 05:59:27 +00:00
namespace Friendica\Worker;
use Friendica\Model\Contact;
/**
* Update contact suggestions
*/
class UpdateSuggestions
{
public static function execute(int $uid)
{
2022-11-30 14:33:55 +00:00
Contact\Relation::updateCachedSuggestions($uid);
2022-11-30 05:59:27 +00:00
}
}