18 lines
286 B
PHP
18 lines
286 B
PHP
<?php
|
|
|
|
namespace App\Domains\Real\Commands\Sync;
|
|
|
|
use Carbon\Carbon;
|
|
|
|
class ActivateSync extends Command
|
|
{
|
|
protected $name = 'sync:activate';
|
|
|
|
protected $description = '同步RD激活数据';
|
|
|
|
public function handle()
|
|
{
|
|
$datetime = $this->getDateTime();
|
|
}
|
|
}
|