Files
cunkebao_v3/Server/application/common/command/TestCommand.php

20 lines
384 B
PHP
Raw Normal View History

2025-03-12 12:18:06 +08:00
<?php
namespace app\common\command;
use think\console\Input;
use think\console\Output;
class TestCommand extends BaseCommand {
protected $logSave = 2;
protected function configure() {
$this->setName('Test')
->setDescription('command test.');
}
protected function execute(Input $input, Output $output) {
print_r('hello test.');
}
}