mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-18 04:44:53 +08:00
15 lines
248 B
PHP
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) {}
|
|
}
|