12345678910111213141516171819202122232425262728 |
- <?php
- declare (strict_types = 1);
- namespace app\admin\command;
- use think\console\Command;
- use think\console\Input;
- use think\console\input\Argument;
- use think\console\input\Option;
- use think\console\Output;use think\Wechat as wchat;
- class wechatTmp extends Command
- {
- protected function configure()
- {
- // 指令配置
- $this->setName('wechattmp')
- ->setDescription('the wechattmp command');
- }
- protected function execute(Input $input, Output $output)
- {
- $wechat_conf=['appid'=>env('WECHAT.APPID'),'appsecret'=>env('WECHAT.APPSECRET')];
- $this->wechat=new wchat($wechat_conf);
-
-
- }
- }
|