修改注释

This commit is contained in:
邹景立 2022-10-18 13:22:03 +08:00
parent 3a0f5b1953
commit 9bbe01a4b8
5 changed files with 19 additions and 17 deletions

View File

@ -6,7 +6,6 @@ use app\data\model\ShopOrder;
use app\data\model\ShopOrderItem; use app\data\model\ShopOrderItem;
use app\data\service\OrderService; use app\data\service\OrderService;
use think\admin\Command; use think\admin\Command;
use think\admin\Exception;
use think\console\Input; use think\console\Input;
use think\console\Output; use think\console\Output;
use think\Model; use think\Model;
@ -26,10 +25,10 @@ class OrderClean extends Command
/** /**
* 业务指令执行 * 业务指令执行
* @param Input $input * @param \think\console\Input $input
* @param Output $output * @param \think\console\Output $output
* @return void * @return void
* @throws Exception * @throws \think\admin\Exception
*/ */
protected function execute(Input $input, Output $output) protected function execute(Input $input, Output $output)
{ {
@ -39,7 +38,8 @@ class OrderClean extends Command
/** /**
* 自动取消30分钟未支付的订单 * 自动取消30分钟未支付的订单
* @throws Exception * @return void
* @throws \think\admin\Exception
*/ */
private function _autoCancelOrder() private function _autoCancelOrder()
{ {
@ -60,7 +60,8 @@ class OrderClean extends Command
/** /**
* 自动清理已经取消的订单 * 自动清理已经取消的订单
* @throws Exception * @return void
* @throws \think\admin\Exception
*/ */
private function _autoRemoveOrder() private function _autoRemoveOrder()
{ {

View File

@ -25,8 +25,8 @@ class UserAgent extends Command
} }
/** /**
* @param Input $input * @param \think\console\Input $input
* @param Output $output * @param \think\console\Output $output
* @return void * @return void
* @throws \think\admin\Exception * @throws \think\admin\Exception
* @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DataNotFoundException

View File

@ -6,7 +6,6 @@ use app\data\model\DataUser;
use app\data\service\UserBalanceService; use app\data\service\UserBalanceService;
use app\data\service\UserRebateService; use app\data\service\UserRebateService;
use think\admin\Command; use think\admin\Command;
use think\admin\Exception;
use think\console\Input; use think\console\Input;
use think\console\Output; use think\console\Output;
@ -24,10 +23,11 @@ class UserAmount extends Command
} }
/** /**
* @param Input $input * @param \think\console\Input $input
* @param Output $output * @param \think\console\Output $output
* @return void * @return void
* @throws Exception * @throws \think\admin\Exception
* @throws \think\db\exception\DbException
*/ */
protected function execute(Input $input, Output $output) protected function execute(Input $input, Output $output)
{ {

View File

@ -28,10 +28,11 @@ class UserTransfer extends Command
/** /**
* 执行微信提现操作 * 执行微信提现操作
* @param Input $input * @param \think\console\Input $input
* @param Output $output * @param \think\console\Output $output
* @return void * @return void
* @throws \think\admin\Exception * @throws \think\admin\Exception
* @throws \think\db\exception\DbException
*/ */
protected function execute(Input $input, Output $output) protected function execute(Input $input, Output $output)
{ {

View File

@ -23,10 +23,10 @@ class UserUpgrade extends Command
} }
/** /**
* @param Input $input * @param \think\console\Input $input
* @param Output $output * @param \think\console\Output $output
* @return void * @return void
* @throws Exception * @throws \think\admin\Exception
*/ */
protected function execute(Input $input, Output $output) protected function execute(Input $input, Output $output)
{ {