Skip to content

Commit 98804ef

Browse files
committed
Simplify EndpointInterface
1 parent 4a7a6a5 commit 98804ef

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/VerifierServer/Endpoints/EndpointInterface.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,12 @@ interface EndpointInterface
2121
* @param int|string &$response The variable to store the generated response.
2222
* @param array &$content_type The variable to store the content type of the response.
2323
* @param string &$body The variable to store the body of the response.
24-
* @param bool $bypass_token Whether to bypass the token check. Default is false.
2524
*/
2625
public function handle(
2726
string $method,
2827
ServerRequestInterface|string $request,
2928
int|string &$response,
3029
array &$content_type,
31-
string &$body,
32-
bool $bypass_token = false
30+
string &$body
3331
): void;
3432
}

0 commit comments

Comments
 (0)