. * */ namespace Friendica\Worker; use Friendica\Core\Logger; use Friendica\Model\FContact; class UpdateFContact { /** * Update fcontact data via probe * * @param string $handle Contact handle * @return void */ public static function execute(string $handle) { $success = FContact::getByURL($handle, true); Logger::info('Updated from probe', ['handle' => $handle, 'success' => $success]); } }