chore(AccountManager): adjust code style for cs-fixer

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This commit is contained in:
Ferdinand Thiessen 2025-07-07 12:18:57 +02:00
parent 4dcb282a47
commit 47e77f27c3
No known key found for this signature in database
GPG key ID: 45FAE7268762B400

View file

@ -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;