Files
static-php-cli/src/StaticPHP/Attribute/Doctor/FixItem.php
crazywhalecc 14bfb4198a v3 base
2025-11-30 15:35:04 +08:00

15 lines
248 B
PHP

<?php
declare(strict_types=1);
namespace StaticPHP\Attribute\Doctor;
/**
* Indicate a method is a fix item for doctor check.
*/
#[\Attribute(\Attribute::TARGET_METHOD)]
class FixItem
{
public function __construct(public string $name) {}
}