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

14 lines
235 B
PHP
Raw Normal View History

2021-11-18 09:57:04 +00:00
<?php declare(strict_types=1);
namespace OpenApi\Tests\Fixtures\StaticAnalyser;
#[Attribute]
class Label
{
protected $name;
public function __construct(string $name, array $numbers)
{
$this->name = $name;
}
}