Skip to content

Commit d1527f5

Browse files
committed
parseQueryParams => getQueryParams
1 parent 40c4022 commit d1527f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/VerifierServer/Endpoints/RequestParserTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public static function parseHeaders(string $request): array
4242
* @param string $request The full URL string containing the query parameters.
4343
* @return array An associative array of query parameters.
4444
*/
45-
public static function parseQueryParams(string $request): array
45+
public static function getQueryParams(string $request): array
4646
{
4747
parse_str(parse_url($request, PHP_URL_QUERY), $params);
4848
return $params;

0 commit comments

Comments
 (0)