Files
huangjingfen/pro_v3.5.1/app/services/system/SystemAuthServices.php
2026-04-30 17:57:03 +08:00

31 lines
762 B
PHP

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace app\services\system;
use app\services\BaseServices;
use crmeb\exceptions\AdminException;
/**
* 原厂授权申请入口已禁用。
* Class SystemAuthServices
* @package app\services\system
*/
class SystemAuthServices extends BaseServices
{
/**
* 原厂授权申请入口已禁用。
* @param array $data
* @param $headerData
* @return bool
*/
public function authApply(array $data, $headerData)
{
throw new AdminException('CRMEB 原厂授权申请入口已禁用,请使用本项目自有版权配置');
}
}