Files
LaLiga-BackEnd/vendor/zircote/swagger-php/src/Annotations/Options.php
T
2024-05-18 02:28:01 +02:00

26 lines
322 B
PHP

<?php declare(strict_types=1);
/**
* @license Apache 2.0
*/
namespace OpenApi\Annotations;
/**
* @Annotation
*/
class Options extends Operation
{
/**
* @inheritdoc
*/
public $method = 'options';
/**
* @inheritdoc
*/
public static $_parents = [
PathItem::class,
];
}