| 123456789101112131415161718192021222324252627 |
- <?php
- namespace app\http\command;
- use think\console\Command;
- class BaseCommand extends Command
- {
- /**
- * @var null 读取系统配置
- */
- protected $config = null;
- /**
- * BaseCommand constructor.
- * @param null $name
- */
- public function __construct($name = null)
- {
- parent::__construct($name);
- // 缓存配置
- $this->config = model('common/SystemConfig')->getAppConfig('',true);
- }
- }
|