]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Api/Twitter/Favorites.php
Some more standards
[friendica.git] / src / Module / Api / Twitter / Favorites.php
index 0f78d527f44589992a813f81316d7b752f8297c5..6a901574e57a849b405ee63f24a51be96b1c12b9 100644 (file)
@@ -46,9 +46,9 @@ class Favorites extends BaseApi
 
                // params
                $since_id = $_REQUEST['since_id'] ?? 0;
-               $max_id = $_REQUEST['max_id'] ?? 0;
-               $count = $_GET['count'] ?? 20;
-               $page = $_REQUEST['page'] ?? 1;
+               $max_id   = $_REQUEST['max_id']   ?? 0;
+               $count    = $_GET['count']        ?? 20;
+               $page     = $_REQUEST['page']     ?? 1;
 
                $start = max(0, ($page - 1) * $count);