📋 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
19 lines
362 B
PHP
19 lines
362 B
PHP
<?php
|
|
|
|
namespace Illuminate\Events;
|
|
|
|
use Closure;
|
|
|
|
if (! function_exists('Illuminate\Events\queueable')) {
|
|
/**
|
|
* Create a new queued Closure event listener.
|
|
*
|
|
* @param \Closure $closure
|
|
* @return \Illuminate\Events\QueuedClosure
|
|
*/
|
|
function queueable(Closure $closure)
|
|
{
|
|
return new QueuedClosure($closure);
|
|
}
|
|
}
|