You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Handlers/OpenApiHandler.php
+45-1Lines changed: 45 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -46,21 +46,28 @@ class OpenApiHandler extends BaseHandler
46
46
/** @var array<string,mixed> */
47
47
private$definitions = [];
48
48
49
+
/** @var array<string|int, mixed> */
50
+
private$allowedEndpoints = [];
51
+
49
52
/**
50
53
* OpenApiHandler constructor.
51
54
* @param array<string,mixed> $initData - structured data for initialization response
55
+
* @param array<string|int, mixed> $allowedEndpoints - list of endpoint (path and methods) which should be included in output, empty means all, wildcard * is supported for path
0 commit comments