BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
vendor
/
zircote
/
swagger-php
/
src
/
Attributes
📤 Upload
📝 New File
📁 New Folder
Close
Editing: Examples.php
<?php declare(strict_types=1); /** * @license Apache 2.0 */ namespace OpenApi\Attributes; use OpenApi\Generator; use OpenApi\Annotations as OA; #[\Attribute(\Attribute::TARGET_CLASS | \Attribute::TARGET_METHOD | \Attribute::TARGET_PROPERTY | \Attribute::IS_REPEATABLE)] class Examples extends OA\Examples { /** * @param string|class-string|object|null $ref * @param array<string,mixed>|null $x * @param Attachable[]|null $attachables */ public function __construct( ?string $example = null, ?string $summary = null, ?string $description = null, int|string|array|null $value = null, ?string $externalValue = null, string|object|null $ref = null, // annotation ?array $x = null, ?array $attachables = null ) { parent::__construct([ 'example' => $example ?? Generator::UNDEFINED, 'summary' => $summary ?? Generator::UNDEFINED, 'description' => $description ?? Generator::UNDEFINED, 'value' => $value ?? Generator::UNDEFINED, 'externalValue' => $externalValue ?? Generator::UNDEFINED, 'ref' => $ref ?? Generator::UNDEFINED, 'x' => $x ?? Generator::UNDEFINED, ]); if ($attachables) { $this->merge($attachables); } } }
Save
Cancel