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: OperationTrait.php
<?php declare(strict_types=1); /** * @license Apache 2.0 */ namespace OpenApi\Attributes; use OpenApi\Generator; trait OperationTrait { /** * @param Server[] $servers * @param string[] $tags * @param Parameter[] $parameters * @param Response[] $responses * @param array<string,mixed>|null $x * @param Attachable[]|null $attachables */ public function __construct( ?string $path = null, ?string $operationId = null, ?string $description = null, ?string $summary = null, ?array $security = null, ?array $servers = null, ?RequestBody $requestBody = null, ?array $tags = null, ?array $parameters = null, ?array $responses = null, ?array $callbacks = null, ?ExternalDocumentation $externalDocs = null, ?bool $deprecated = null, // annotation ?array $x = null, ?array $attachables = null ) { parent::__construct([ 'path' => $path ?? Generator::UNDEFINED, 'operationId' => $operationId ?? Generator::UNDEFINED, 'description' => $description ?? Generator::UNDEFINED, 'summary' => $summary ?? Generator::UNDEFINED, 'security' => $security ?? Generator::UNDEFINED, 'servers' => $servers ?? Generator::UNDEFINED, 'tags' => $tags ?? Generator::UNDEFINED, 'callbacks' => $callbacks ?? Generator::UNDEFINED, 'deprecated' => $deprecated ?? Generator::UNDEFINED, 'x' => $x ?? Generator::UNDEFINED, 'value' => $this->combine($requestBody, $responses, $parameters, $externalDocs, $attachables), ]); } }
Save
Cancel