laravel-learn-bbs/app/Console/Commands/SyncUserActivedAt.php

45 lines
815 B
PHP
Raw Normal View History

<?php
namespace App\Console\Commands;
use App\Models\User;
use Illuminate\Console\Command;
class SyncUserActivedAt extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'larabbs:sync-user-actived-at';
/**
* The console command description.
*
* @var string
*/
protected $description = '同步最后活动时间';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
* @param User $user
* @return mixed
*/
public function handle(User $user)
{
$user->syncUserActivedAt();
$this->info('同步成功');
}
}