2023-04-22 21:23:12 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
namespace SPC\doctor\item;
|
|
|
|
|
|
|
|
|
|
use SPC\builder\traits\UnixSystemUtilTrait;
|
|
|
|
|
use SPC\doctor\AsCheckItem;
|
|
|
|
|
use SPC\doctor\CheckResult;
|
|
|
|
|
|
|
|
|
|
class OSCheckList
|
|
|
|
|
{
|
|
|
|
|
use UnixSystemUtilTrait;
|
|
|
|
|
|
2023-06-28 18:38:14 +08:00
|
|
|
#[AsCheckItem('if current OS are supported', level: 999)]
|
2023-04-22 21:23:12 +08:00
|
|
|
public function checkOS(): ?CheckResult
|
|
|
|
|
{
|
|
|
|
|
if (!in_array(PHP_OS_FAMILY, ['Darwin', 'Linux'])) {
|
|
|
|
|
return CheckResult::fail('Current OS is not supported');
|
|
|
|
|
}
|
2023-06-28 18:38:14 +08:00
|
|
|
return CheckResult::ok(PHP_OS_FAMILY . ' ' . php_uname('m') . ', supported');
|
2023-04-22 21:23:12 +08:00
|
|
|
}
|
|
|
|
|
}
|