📋 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
22 lines
466 B
PHP
22 lines
466 B
PHP
<?php
|
|
|
|
namespace Illuminate\Console\Events;
|
|
|
|
use Illuminate\Console\Scheduling\Event;
|
|
use Throwable;
|
|
|
|
class ScheduledTaskFailed
|
|
{
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param \Illuminate\Console\Scheduling\Event $task The scheduled event that failed.
|
|
* @param \Throwable $exception The exception that was thrown.
|
|
*/
|
|
public function __construct(
|
|
public Event $task,
|
|
public Throwable $exception,
|
|
) {
|
|
}
|
|
}
|