Файл: vendor/laravel/framework/src/Illuminate/Console/Scheduling/SchedulingMutex.php
Строк: 40
<?php
namespace IlluminateConsoleScheduling;
use DateTimeInterface;
interface SchedulingMutex
{
/**
* Attempt to obtain a scheduling mutex for the given event.
*
* @param IlluminateConsoleSchedulingEvent $event
* @param DateTimeInterface $time
* @return bool
*/
public function create(Event $event, DateTimeInterface $time);
/**
* Determine if a scheduling mutex exists for the given event.
*
* @param IlluminateConsoleSchedulingEvent $event
* @param DateTimeInterface $time
* @return bool
*/
public function exists(Event $event, DateTimeInterface $time);
}