File: /var/www/vhost/disk-apps/alq-cali.bikenow.co/vendor/zircote/swagger-php/src/Attributes/License.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)]
class License extends OA\License
{
/**
* @param array<string,mixed>|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),
]);
}
}