1
0
Fork 0
- added some type-hints
- added documentation
This commit is contained in:
Roland Häder 2022-06-23 13:56:18 +02:00
commit a49fb9cbf9
Signed by: roland
GPG key ID: C82EDE5DDFA0BA77
8 changed files with 64 additions and 19 deletions

View file

@ -28,9 +28,11 @@ class UpdateContact
{
/**
* Update contact data via probe
*
* @param int $contact_id Contact ID
* @return void
*/
public static function execute($contact_id)
public static function execute(int $contact_id)
{
$success = Contact::updateFromProbe($contact_id);