]> git.mxchange.org Git - friendica.git/commitdiff
Fix whitespace issue on assignment alignment
authorHank Grabowski <hankgrabowski@gmail.com>
Mon, 20 Feb 2023 14:07:50 +0000 (09:07 -0500)
committerHank Grabowski <hankgrabowski@gmail.com>
Mon, 20 Feb 2023 14:07:50 +0000 (09:07 -0500)
src/Module/Api/Mastodon/Notifications.php

index ab94fee55c4e50020ec2b90ab06756fb43615cf1..31fe7a57fb605a99fb9120aa9885ddbfb2f73b3e 100644 (file)
@@ -56,15 +56,15 @@ class Notifications extends BaseApi
                }
 
                $request = $this->getRequest([
-                       'max_id' => 0,     // Return results older than this ID
-                       'since_id' => 0,     // Return results newer than this ID
-                       'min_id' => 0,     // Return results immediately newer than this ID
-                       'limit' => 20,    // Maximum number of results to return (default 20)
+                       'max_id'        => 0,     // Return results older than this ID
+                       'since_id'      => 0,     // Return results newer than this ID
+                       'min_id'        => 0,     // Return results immediately newer than this ID
+                       'limit'         => 20,    // Maximum number of results to return (default 20)
                        'exclude_types' => [],    // Array of types to exclude (follow, favourite, reblog, mention, poll, follow_request)
-                       'account_id' => 0,     // Return only notifications received from this account
-                       'with_muted' => false, // Pleroma extension: return activities by muted (not by blocked!) users.
-                       'include_all' => false,  // Include dismissed and undismissed
-                       'summary' => false,
+                       'account_id'    => 0,     // Return only notifications received from this account
+                       'with_muted'    => false, // Pleroma extension: return activities by muted (not by blocked!) users.
+                       'include_all'   => false,  // Include dismissed and undismissed
+                       'summary'       => false,
                ], $request);
 
                $params = ['order' => ['id' => true]];