📋 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
31 lines
685 B
PHP
31 lines
685 B
PHP
<?php
|
|
|
|
namespace Illuminate\Console\Scheduling;
|
|
|
|
interface EventMutex
|
|
{
|
|
/**
|
|
* Attempt to obtain an event mutex for the given event.
|
|
*
|
|
* @param \Illuminate\Console\Scheduling\Event $event
|
|
* @return bool
|
|
*/
|
|
public function create(Event $event);
|
|
|
|
/**
|
|
* Determine if an event mutex exists for the given event.
|
|
*
|
|
* @param \Illuminate\Console\Scheduling\Event $event
|
|
* @return bool
|
|
*/
|
|
public function exists(Event $event);
|
|
|
|
/**
|
|
* Clear the event mutex for the given event.
|
|
*
|
|
* @param \Illuminate\Console\Scheduling\Event $event
|
|
* @return void
|
|
*/
|
|
public function forget(Event $event);
|
|
}
|