14 lines
235 B
PHP
14 lines
235 B
PHP
|
<?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;
|
||
|
}
|
||
|
}
|