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

26 lines
318 B
PHP

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