diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2025-07-07 12:53:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-07 12:53:49 +0200 |
commit | f9cdb947fcf928f431001fae02e2dcc05d5ebcbd (patch) | |
tree | dbbbf92c0cbc737f6f2e7034302ae6c93943c0b7 | |
parent | 9a2cc58d4febdc65b39274c14746a63fde8ee0d8 (diff) | |
parent | 47e77f27c3bb5bf5549d9f6c8e6b0a4de762f039 (diff) | |
download | nextcloud-server-f9cdb947fcf928f431001fae02e2dcc05d5ebcbd.tar.gz nextcloud-server-f9cdb947fcf928f431001fae02e2dcc05d5ebcbd.zip |
Merge pull request #53845 from nextcloud/chore/code-style
chore(AccountManager): adjust code style for cs-fixer
-rw-r--r-- | lib/private/Accounts/AccountManager.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Accounts/AccountManager.php b/lib/private/Accounts/AccountManager.php index 0922f802068..9c7c35d4a6b 100644 --- a/lib/private/Accounts/AccountManager.php +++ b/lib/private/Accounts/AccountManager.php @@ -752,8 +752,8 @@ class AccountManager implements IAccountManager { foreach ($decoded['links'] as $link) { // have application/activity+json or application/ld+json if (isset($link['type']) && ( - $link['type'] === 'application/activity+json' || - $link['type'] === 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"' + $link['type'] === 'application/activity+json' + || $link['type'] === 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"' )) { $found = true; break; |