22 lines
398 B
Plaintext
22 lines
398 B
Plaintext
![]() |
<?php
|
||
|
namespace {NAMESPACE};
|
||
|
|
||
|
use think\console\Command;
|
||
|
use think\console\Input;
|
||
|
use think\console\input\Argument;
|
||
|
use think\console\input\Option;
|
||
|
use think\console\Output;
|
||
|
|
||
|
class {CLASS}Command extends Command
|
||
|
{
|
||
|
protected function configure()
|
||
|
{
|
||
|
$this->setName('')
|
||
|
->setDescription('');
|
||
|
}
|
||
|
|
||
|
protected function execute(Input $input, Output $output)
|
||
|
{
|
||
|
}
|
||
|
}
|