📋 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
27 lines
658 B
PHP
27 lines
658 B
PHP
<?php
|
|
|
|
namespace Illuminate\Console\Scheduling;
|
|
|
|
use DateTimeInterface;
|
|
|
|
interface SchedulingMutex
|
|
{
|
|
/**
|
|
* Attempt to obtain a scheduling mutex for the given event.
|
|
*
|
|
* @param \Illuminate\Console\Scheduling\Event $event
|
|
* @param \DateTimeInterface $time
|
|
* @return bool
|
|
*/
|
|
public function create(Event $event, DateTimeInterface $time);
|
|
|
|
/**
|
|
* Determine if a scheduling mutex exists for the given event.
|
|
*
|
|
* @param \Illuminate\Console\Scheduling\Event $event
|
|
* @param \DateTimeInterface $time
|
|
* @return bool
|
|
*/
|
|
public function exists(Event $event, DateTimeInterface $time);
|
|
}
|