Config.php 345 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\http\facade;
  3. use think\Facade;
  4. class Config extends Facade
  5. {
  6. /**
  7. *
  8. * @author 许祖兴 < zuxing.xu@lettered.cn>
  9. * @date 2020/3/16 10:47
  10. *
  11. * @return string
  12. */
  13. protected static function getFacadeClass()
  14. {
  15. return 'app\\common\\model\\SystemConfig';
  16. }
  17. }