Файл: vendor/laravel/framework/src/Illuminate/Console/CommandMutex.php
Строк: 40
<?php
namespace IlluminateConsole;
interface CommandMutex
{
/**
* Attempt to obtain a command mutex for the given command.
*
* @param IlluminateConsoleCommand $command
* @return bool
*/
public function create($command);
/**
* Determine if a command mutex exists for the given command.
*
* @param IlluminateConsoleCommand $command
* @return bool
*/
public function exists($command);
/**
* Release the mutex for the given command.
*
* @param IlluminateConsoleCommand $command
* @return bool
*/
public function forget($command);
}