refactor: add trailing-comma in method args and params

Signed-off-by: Saw-jan <saw.jan.grg3e@gmail.com>
This commit is contained in:
Saw-jan
2025-06-19 15:34:02 +05:45
parent c731dcd0df
commit 56e5fd20d6
50 changed files with 2153 additions and 2149 deletions

View File

@@ -45,7 +45,7 @@ class AuthAppHelper {
public static function listAllAppAuthTokensForUser(
string $baseUrl,
string $user,
string $password
string $password,
): ResponseInterface {
$url = $baseUrl . self::getAuthAppEndpoint();
return HttpRequestHelper::sendRequest(
@@ -92,7 +92,7 @@ class AuthAppHelper {
string $baseUrl,
string $user,
string $password,
string $token
string $token,
): ResponseInterface {
$url = $baseUrl . self::getAuthAppEndpoint() . "?token=$token";
return HttpRequestHelper::sendRequest(