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

26 lines
314 B
PHP

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