BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
.
/
app.imagivibe.com
/
vendor
/
zircote
/
swagger-php
/
src
/
Annotations
📤 Upload
📝 New File
📁 New Folder
Close
Editing: PathParameter.php
<?php declare(strict_types=1); /** * @license Apache 2.0 */ namespace OpenApi\Annotations; use OpenApi\Annotations as OA; /** * A `@OA\Request` path parameter. * * @Annotation */ class PathParameter extends Parameter { /** * @inheritdoc * This takes 'path' as the default location. */ public $in = 'path'; /** * @inheritdoc */ public $required = true; /** * @inheritdoc */ public static $_required = ['name']; }
Save
Cancel