mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:42:54 +00:00
Fixed indenting
This commit is contained in:
parent
adb4aea6ad
commit
aaf5c323b6
1 changed files with 10 additions and 6 deletions
|
@ -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
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue