Preview: License.php
Size: 862 B
/var/www/multi-event-cfp.bitkit.dk/httpdocs/vendor/zircote/swagger-php/src/Attributes/License.php
<?php declare(strict_types=1);
/**
* @license Apache 2.0
*/
namespace OpenApi\Attributes;
use OpenApi\Generator;
#[\Attribute(\Attribute::TARGET_CLASS)]
class License extends \OpenApi\Annotations\License
{
/**
* @param array<string,string>|null $x
* @param Attachable[]|null $attachables
*/
public function __construct(
?string $name = null,
?string $identifier = null,
?string $url = null,
// annotation
?array $x = null,
?array $attachables = null
) {
parent::__construct([
'name' => $name ?? Generator::UNDEFINED,
'identifier' => $identifier ?? Generator::UNDEFINED,
'url' => $url ?? Generator::UNDEFINED,
'x' => $x ?? Generator::UNDEFINED,
'value' => $this->combine($attachables),
]);
}
}
Directory Contents
Dirs: 0 × Files: 39