swagger-php/src/Annotations/Get.php

16 lines
160 B
PHP

<?php
/**
* @license Apache 2.0
*/
namespace Swagger\Annotations;
/**
* @Annotation
*/
class Get extends Operation {
public $method = 'get';
}