coupon-admin/vendor/zircote/swagger-php/src/Annotations/Post.php

26 lines
316 B
PHP
Raw Normal View History

2021-11-18 17:57:04 +08:00
<?php declare(strict_types=1);
/**
* @license Apache 2.0
*/
namespace OpenApi\Annotations;
/**
* @Annotation
*/
class Post extends Operation
{
/**
* @inheritdoc
*/
public $method = 'post';
/**
* @inheritdoc
*/
public static $_parents = [
PathItem::class,
];
}