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

12 lines
201 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
{
2023-09-08 22:12:59 +08:00
public function __construct(public string $name) {}
2023-04-22 21:23:12 +08:00
}