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

19 lines
342 B
PHP
Raw Normal View History

2023-04-22 21:23:12 +08:00
<?php
declare(strict_types=1);
namespace SPC\doctor;
#[\Attribute(\Attribute::TARGET_METHOD)]
class AsCheckItem
{
public mixed $callback = null;
public function __construct(
public string $item_name,
public ?string $limit_os = null,
2023-06-28 18:38:14 +08:00
public int $level = 100,
public bool $manual = false,
2023-09-08 22:12:59 +08:00
) {}
2023-04-22 21:23:12 +08:00
}