改进 扣费命令

This commit is contained in:
iVampireSP.com 2023-01-05 17:34:04 +08:00
parent 9d57aa8bf5
commit 64039b1186
No known key found for this signature in database
GPG Key ID: 2F7B001CA27A8132

View File

@ -4,6 +4,7 @@
use App\Models\Host; use App\Models\Host;
use Illuminate\Console\Command; use Illuminate\Console\Command;
use Symfony\Component\Console\Command\Command as CommandAlias;
class HostCost extends Command class HostCost extends Command
{ {
@ -49,6 +50,6 @@ public function handle(): int
} }
return Command::SUCCESS; return CommandAlias::SUCCESS;
} }
} }