LaLiga-BackEnd/vendor/zircote/swagger-php/src/Annotations/QueryParameter.php

22 lines
313 B
PHP

<?php declare(strict_types=1);
/**
* @license Apache 2.0
*/
namespace OpenApi\Annotations;
/**
* A `@OA\Request` query parameter.
*
* @Annotation
*/
class QueryParameter extends Parameter
{
/**
* @inheritdoc
* This takes 'query' as the default location.
*/
public $in = 'query';
}