test_lgq/niucloud/core/dict/DictLoader.php

41 lines
1021 B
PHP
Raw Normal View History

2024-01-24 17:36:08 +08:00
<?php
// +----------------------------------------------------------------------
// | Niucloud-admin 企业快速开发的saas管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud-admin.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace core\dict;
use core\loader\Loader;
/**
* @see DictLoader
* @mixin BaseDict
* @method array|null load(array $data = [])
*/
class DictLoader extends Loader
{
/**
* 空间名
* @var string
*/
protected $namespace = '\\core\\dict\\';
protected $config_name = 'dict';
/**
* 默认驱动
* @return string
*/
protected function getDefault()
{
return "Event";
}
}