From 7a8f9f382e2c167080a25fa7adc7df5eb01f5025 Mon Sep 17 00:00:00 2001 From: Matthew Exon Date: Mon, 3 May 2021 20:56:41 +0200 Subject: [PATCH] Fix assignment statement alignment Co-authored-by: Philipp --- src/Console/Contact.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/Contact.php b/src/Console/Contact.php index a64ae660c..8bff00f1d 100644 --- a/src/Console/Contact.php +++ b/src/Console/Contact.php @@ -269,7 +269,7 @@ HELP; break; case 'url': $user = $this->getUserByNick(2); - $url = $this->getArgument(3); + $url = $this->getArgument(3); $contact = ContactModel::getByURLForUser($url, $user['uid'], false, $fields); if (!empty($contact)) { $addRow($contact);