Files
backend/app/Console/Commands/SendSupervisorCheckStatsCommand.php
2025-08-11 15:45:53 +03:30

33 lines
746 B
PHP

<?php
namespace App\Console\Commands;
use App\Services\Commands\SendSupervisorCheckStatsReportService;
use Illuminate\Console\Command;
class SendSupervisorCheckStatsCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'report:send-supervisor-check-stats';
/**
* The console command description.
*
* @var string
*/
protected $description = 'gather all supervisor check stats report and send them to the center';
/**
* Execute the console command.
*/
public function handle(SendSupervisorCheckStatsReportService $service): void
{
$service->execute();
$this->info('Done!');
}
}