Config.php 239 B

12345678910111213141516
  1. <?php
  2. declare(strict_types=1);
  3. namespace SixShop\AliyunWuliu;
  4. use SixShop\System\Trait\ConfigTrait;
  5. class Config
  6. {
  7. use ConfigTrait;
  8. public function getAppCode(): string
  9. {
  10. return $this->getConfig('app_code');
  11. }
  12. }