Skip to content

Commit

Permalink
Style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
trowski committed Jun 3, 2023
1 parent ef1e6e5 commit b9f6a9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Middleware/AllowedMethodsMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function handleRequest(Request $request, RequestHandler $requestHandler):
*/
public function getAllowedMethods(): array
{
return array_values($this->allowedMethods);
return \array_values($this->allowedMethods);
}

private function handleInvalidMethod(Request $request, int $status): Response
Expand Down

0 comments on commit b9f6a9e

Please sign in to comment.