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