mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-07 00:35:41 +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) {}
|
||
|
|
}
|