Files
nexusphp/app/Console/Commands/AttendanceCleanup.php
2022-04-03 16:03:47 +08:00

50 lines
998 B
PHP

<?php
namespace App\Console\Commands;
use App\Models\Attendance;
use App\Repositories\AttendanceRepository;
use Illuminate\Console\Command;
class AttendanceCleanup extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'attendance:cleanup';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Cleanup attendance data.';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*/
public function handle()
{
$rep = new AttendanceRepository();
$result = $rep->cleanup();
$log = sprintf(
'[%s], %s, result: %s',
nexus()->getRequestId(), __METHOD__, var_export($result, true)
);
$this->info($log);
do_log($log);
}
}