BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
vendor
/
zircote
/
swagger-php
/
src
/
Annotations
📤 Upload
📝 New File
📁 New Folder
Close
Editing: XmlContent.php
<?php declare(strict_types=1); /** * @license Apache 2.0 */ namespace OpenApi\Annotations; use OpenApi\Annotations as OA; /** * Shorthand for a xml response. * * Use as `@OA\Schema` inside a `Response` and `MediaType`->`'application/xml'` will be generated. * * @Annotation */ class XmlContent extends Schema { /** * @inheritdoc */ public static $_parents = []; /** * @inheritdoc */ public static $_nested = [ Discriminator::class => 'discriminator', Items::class => 'items', Property::class => ['properties', 'property'], ExternalDocumentation::class => 'externalDocs', Xml::class => 'xml', AdditionalProperties::class => 'additionalProperties', Examples::class => ['examples', 'example'], Attachable::class => ['attachables'], ]; }
Save
Cancel