增加基础配置
Some checks failed
Build Docker / build (push) Has been cancelled

This commit is contained in:
2025-07-12 11:59:33 +08:00
parent fb50096e66
commit 8a3ab17b25
44 changed files with 1599 additions and 66 deletions

View File

@ -44,25 +44,6 @@ class QueueContext
return Context::get(self::USER_KEY);
}
/**
* 设置当前公司信息
* @param array $companyInfo
* @return void
*/
public static function setCompanyInfo(array $companyInfo): void
{
Context::set(self::COMPANY_KEY, $companyInfo);
}
/**
* 获取当前公司信息
* @return array|null
*/
public static function getCompanyInfo(): ?array
{
return Context::get(self::COMPANY_KEY);
}
public static function clear(): void
{
Context::destroy(self::USER_KEY);