From: Roland Häder Date: Sat, 18 Jun 2022 03:04:04 +0000 (+0200) Subject: Fixed indenting X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=aaf5c323b6fdf81fc057b0688786992a6319eb41;p=friendica.git Fixed indenting --- diff --git a/src/Protocol/Diaspora.php b/src/Protocol/Diaspora.php index 7c1c674a43..c0a338344b 100644 --- a/src/Protocol/Diaspora.php +++ b/src/Protocol/Diaspora.php @@ -303,9 +303,11 @@ class Diaspora } } - return ['message' => (string)Strings::base64UrlDecode($base->data), - 'author' => XML::unescape($author_addr), - 'key' => (string)$key]; + return [ + 'message' => (string)Strings::base64UrlDecode($base->data), + 'author' => XML::unescape($author_addr), + 'key' => (string)$key + ]; } /** @@ -445,9 +447,11 @@ class Diaspora Logger::notice('Message verified.'); - return ['message' => (string)$inner_decrypted, - 'author' => XML::unescape($author_link), - 'key' => (string)$key]; + return [ + 'message' => (string)$inner_decrypted, + 'author' => XML::unescape($author_link), + 'key' => (string)$key + ]; }