]> git.mxchange.org Git - friendica.git/commitdiff
Fixed indenting
authorRoland Häder <roland@mxchange.org>
Mon, 20 Jun 2022 23:29:20 +0000 (01:29 +0200)
committerRoland Häder <roland@mxchange.org>
Mon, 20 Jun 2022 23:29:33 +0000 (01:29 +0200)
src/Protocol/ActivityPub/Transmitter.php

index b196f196a1a5634a21342a9b022599766feabecc..6384e2ed44039a1542696d4ffb4d32c30a461e43 100644 (file)
@@ -2041,13 +2041,15 @@ class Transmitter
                        $id = DI::baseUrl() . '/activity/' . System::createGUID();
                }
 
-               $data = ['@context' => ActivityPub::CONTEXT,
+               $data = [
+                       '@context' => ActivityPub::CONTEXT,
                        'id' => $id,
                        'type' => $activity,
                        'actor' => $owner['url'],
                        'object' => $profile['url'],
                        'instrument' => self::getService(),
-                       'to' => [$profile['url']]];
+                       'to' => [$profile['url']],
+               ];
 
                Logger::info('Sending activity ' . $activity . ' to ' . $target . ' for user ' . $uid);
 
@@ -2094,13 +2096,15 @@ class Transmitter
 
                $owner = User::getOwnerDataById($uid);
 
-               $data = ['@context' => ActivityPub::CONTEXT,
+               $data = [
+                       '@context' => ActivityPub::CONTEXT,
                        'id' => DI::baseUrl() . '/activity/' . System::createGUID(),
                        'type' => 'Follow',
                        'actor' => $owner['url'],
                        'object' => $object,
                        'instrument' => self::getService(),
-                       'to' => [$profile['url']]];
+                       'to' => [$profile['url']],
+               ];
 
                Logger::info('Sending follow ' . $object . ' to ' . $target . ' for user ' . $uid);
 
@@ -2127,7 +2131,8 @@ class Transmitter
                }
 
                $owner = User::getOwnerDataById($uid);
-               $data = ['@context' => ActivityPub::CONTEXT,
+               $data = [
+                       '@context' => ActivityPub::CONTEXT,
                        'id' => DI::baseUrl() . '/activity/' . System::createGUID(),
                        'type' => 'Accept',
                        'actor' => $owner['url'],
@@ -2138,7 +2143,8 @@ class Transmitter
                                'object' => $owner['url']
                        ],
                        'instrument' => self::getService(),
-                       'to' => [$profile['url']]];
+                       'to' => [$profile['url']],
+               ];
 
                Logger::debug('Sending accept to ' . $target . ' for user ' . $uid . ' with id ' . $id);
 
@@ -2165,7 +2171,8 @@ class Transmitter
                }
 
                $owner = User::getOwnerDataById($uid);
-               $data = ['@context' => ActivityPub::CONTEXT,
+               $data = [
+                       '@context' => ActivityPub::CONTEXT,
                        'id' => DI::baseUrl() . '/activity/' . System::createGUID(),
                        'type' => 'Reject',
                        'actor' => $owner['url'],
@@ -2176,7 +2183,8 @@ class Transmitter
                                'object' => $owner['url']
                        ],
                        'instrument' => self::getService(),
-                       'to' => [$profile['url']]];
+                       'to' => [$profile['url']],
+               ];
 
                Logger::debug('Sending reject to ' . $target . ' for user ' . $uid . ' with id ' . $id);
 
@@ -2223,7 +2231,7 @@ class Transmitter
                                'object' => $profile['url']
                        ],
                        'instrument' => self::getService(),
-                       'to' => [$profile['url']]
+                       'to' => [$profile['url']],
                ];
 
                Logger::info('Sending undo to ' . $target . ' for user ' . $uid . ' with id ' . $id);