PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Console
/
Scheduling
<?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); }
[-] ManagesFrequencies.php
[edit]
[-] ScheduleRunCommand.php
[edit]
[+]
..
[-] CommandBuilder.php
[edit]
[-] CacheAware.php
[edit]
[-] ScheduleFinishCommand.php
[edit]
[-] ScheduleListCommand.php
[edit]
[-] Event.php
[edit]
[-] ScheduleClearCacheCommand.php
[edit]
[-] Schedule.php
[edit]
[-] EventMutex.php
[edit]
[-] CallbackEvent.php
[edit]
[-] CacheSchedulingMutex.php
[edit]
[-] ScheduleWorkCommand.php
[edit]
[-] CacheEventMutex.php
[edit]
[-] ScheduleTestCommand.php
[edit]
[-] SchedulingMutex.php
[edit]