vendor/zircote/swagger-php/src/Annotations/Post.php line 12

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. /**
  3.  * @license Apache 2.0
  4.  */
  5. namespace OpenApi\Annotations;
  6. /**
  7.  * @Annotation
  8.  */
  9. class Post extends Operation
  10. {
  11.     /**
  12.      * @inheritdoc
  13.      */
  14.     public $method 'post';
  15.     /**
  16.      * @inheritdoc
  17.      */
  18.     public static $_parents = [
  19.         PathItem::class,
  20.     ];
  21. }