File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
src/VerifierServer/Endpoints Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,11 @@ public static function parseHeaders(string $request): array
3333 []);
3434 }
3535
36+ public function getQueryParams (string $ request ): array
37+ {
38+ return self ::__getQueryParams ($ request );
39+ }
40+
3641 /**
3742 * Parses the query parameters from a given request URL string.
3843 *
@@ -42,7 +47,7 @@ public static function parseHeaders(string $request): array
4247 * @param string $request The full URL string containing the query parameters.
4348 * @return array An associative array of query parameters.
4449 */
45- public static function getQueryParams (string $ request ): array
50+ public static function __getQueryParams (string $ request ): array
4651 {
4752 parse_str (parse_url ($ request , PHP_URL_QUERY ), $ params );
4853 return $ params ;
You can’t perform that action at this time.
0 commit comments