📋 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
647 B
PHP
31 lines
647 B
PHP
<?php
|
|
|
|
namespace Illuminate\Console;
|
|
|
|
interface CommandMutex
|
|
{
|
|
/**
|
|
* Attempt to obtain a command mutex for the given command.
|
|
*
|
|
* @param \Illuminate\Console\Command $command
|
|
* @return bool
|
|
*/
|
|
public function create($command);
|
|
|
|
/**
|
|
* Determine if a command mutex exists for the given command.
|
|
*
|
|
* @param \Illuminate\Console\Command $command
|
|
* @return bool
|
|
*/
|
|
public function exists($command);
|
|
|
|
/**
|
|
* Release the mutex for the given command.
|
|
*
|
|
* @param \Illuminate\Console\Command $command
|
|
* @return bool
|
|
*/
|
|
public function forget($command);
|
|
}
|