📋 Commit iniziale con: - ✅ Documentazione unificata in docs/ - ✅ Codice Laravel in netgescon-laravel/ - ✅ Script automazione in scripts/ - ✅ Configurazione sync rsync - ✅ Struttura organizzata e pulita 🔄 Versione: 2025.07.19-1644 🎯 Sistema pronto per Git distribuito
21 lines
442 B
PHP
21 lines
442 B
PHP
<?php
|
|
|
|
namespace Illuminate\Console\Events;
|
|
|
|
use Illuminate\Console\Scheduling\Event;
|
|
|
|
class ScheduledTaskFinished
|
|
{
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param \Illuminate\Console\Scheduling\Event $task The scheduled event that ran.
|
|
* @param float $runtime The runtime of the scheduled event.
|
|
*/
|
|
public function __construct(
|
|
public Event $task,
|
|
public float $runtime,
|
|
) {
|
|
}
|
|
}
|