static-php-cli/src/SPC/doctor/AsFixItem.php

14 lines
210 B
PHP
Raw Normal View History

2023-04-22 21:23:12 +08:00
<?php
declare(strict_types=1);
namespace SPC\doctor;
2023-06-28 18:38:14 +08:00
#[\Attribute(\Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)]
2023-04-22 21:23:12 +08:00
class AsFixItem
{
public function __construct(public string $name)
{
}
}