v2board/app/Console/Commands/V2boardUpdate.php

46 lines
752 B
PHP
Raw Normal View History

2019-11-23 23:35:54 +08:00
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use App\Models\Order;
use App\Models\User;
2019-12-19 21:20:51 +08:00
use Illuminate\Support\Facades\DB;
2019-11-23 23:35:54 +08:00
2019-12-19 21:20:51 +08:00
class V2boardUpdate extends Command
2019-11-23 23:35:54 +08:00
{
/**
* The name and signature of the console command.
*
* @var string
*/
2019-12-19 21:20:51 +08:00
protected $signature = 'v2board:update';
2019-11-23 23:35:54 +08:00
/**
* The console command description.
*
* @var string
*/
2019-12-19 21:20:51 +08:00
protected $description = 'v2board 更新';
2019-11-23 23:35:54 +08:00
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
2019-12-19 21:20:51 +08:00
2019-11-23 23:35:54 +08:00
}
}