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` cookie parameter.
|
|
*
|
|
* @Annotation
|
|
*/
|
|
class CookieParameter extends Parameter
|
|
{
|
|
/**
|
|
* @inheritdoc
|
|
* This takes 'cookie' as the default location.
|
|
*/
|
|
public $in = 'cookie';
|
|
}
|