16 lines
233 B
PHP
16 lines
233 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\MiningChecker\Legacy;
|
|
|
|
use ModulesCore\ModuleHttp;
|
|
|
|
final class UserScope
|
|
{
|
|
public static function current(): string
|
|
{
|
|
return ModuleHttp::currentUserScope();
|
|
}
|
|
}
|