coupon-admin/vendor/zircote/swagger-php/tests/Fixtures/StaticAnalyser/Php8AttrMix.php

21 lines
346 B
PHP
Raw Normal View History

2021-11-18 09:57:04 +00:00
<?php declare(strict_types=1);
namespace OpenApi\Tests\Fixtures\StaticAnalyser;
/**
* @OA\Schema()
*/
class Php8AttrMix
{
#[label('Id', [1])]
/** @OA\Property() */
public string $id = '';
/** @OA\Property() */
#[
label('OtherId', [2, 3]),
label('OtherId', [2, 3]),
]
public string $otherId = '';
}