- added some type-hints
- added documentation
This commit is contained in:
Roland Häder 2022-06-24 04:42:35 +02:00
parent 39675fe683
commit 88870d18be
No known key found for this signature in database
GPG key ID: C82EDE5DDFA0BA77
6 changed files with 36 additions and 14 deletions

View file

@ -41,11 +41,11 @@ use Friendica\Util\Strings;
class OnePoll
{
public static function execute($contact_id = 0, $command = '')
public static function execute(int $contact_id = 0, string $command = '')
{
Logger::notice('Start polling/probing contact', ['id' => $contact_id]);
$force = ($command == "force");
$force = ($command == 'force');
if (empty($contact_id)) {
Logger::notice('no contact provided');
@ -118,6 +118,7 @@ class OnePoll
*
* @param array $contact The personal contact entry
* @param array $fields The fields that are updated
* @return void
* @throws \Exception
*/
private static function updateContact(array $contact, array $fields)