Subiendo proyecto completo sin restricciones de git ignore
This commit is contained in:
30
vendor/laravel/framework/src/Illuminate/Console/CommandMutex.php
vendored
Normal file
30
vendor/laravel/framework/src/Illuminate/Console/CommandMutex.php
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
<?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);
|
||||
}
|
||||
Reference in New Issue
Block a user