You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
464 B
24 lines
464 B
<?php
|
|
/**
|
|
* @OA\SecurityScheme(
|
|
* securityScheme="api_key",
|
|
* type="apiKey",
|
|
* in="header",
|
|
* name="api_key"
|
|
* )
|
|
*/
|
|
|
|
/**
|
|
* @OA\SecurityScheme(
|
|
* securityScheme="petstore_auth",
|
|
* type="oauth2",
|
|
* @OA\Flow(
|
|
* authorizationUrl="http://petstore.swagger.io/oauth/dialog",
|
|
* flow="implicit",
|
|
* scopes={
|
|
* "read:pets": "read your pets",
|
|
* "write:pets": "modify pets in your account"
|
|
* }
|
|
* )
|
|
* )
|
|
*/
|
|
|