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