mirror of
https://github.com/itflow-org/itflow
synced 2026-03-19 20:24:51 +00:00
Reintroduce Webklex IMAP for ticket processing as PHP-IMAP is no longer being developed. This is optional for now and considered beta can be found in cron/ticket_email_parser.php
This commit is contained in:
36
plugins/vendor/illuminate/support/Facades/Concurrency.php
vendored
Normal file
36
plugins/vendor/illuminate/support/Facades/Concurrency.php
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
namespace Illuminate\Support\Facades;
|
||||
|
||||
use Illuminate\Concurrency\ConcurrencyManager;
|
||||
|
||||
/**
|
||||
* @method static mixed driver(string|null $name = null)
|
||||
* @method static \Illuminate\Concurrency\ProcessDriver createProcessDriver(array $config)
|
||||
* @method static \Illuminate\Concurrency\ForkDriver createForkDriver(array $config)
|
||||
* @method static \Illuminate\Concurrency\SyncDriver createSyncDriver(array $config)
|
||||
* @method static string getDefaultInstance()
|
||||
* @method static void setDefaultInstance(string $name)
|
||||
* @method static array getInstanceConfig(string $name)
|
||||
* @method static mixed instance(string|null $name = null)
|
||||
* @method static \Illuminate\Concurrency\ConcurrencyManager forgetInstance(array|string|null $name = null)
|
||||
* @method static void purge(string|null $name = null)
|
||||
* @method static \Illuminate\Concurrency\ConcurrencyManager extend(string $name, \Closure $callback)
|
||||
* @method static \Illuminate\Concurrency\ConcurrencyManager setApplication(\Illuminate\Contracts\Foundation\Application $app)
|
||||
* @method static array run(\Closure|array $tasks)
|
||||
* @method static \Illuminate\Support\Defer\DeferredCallback defer(\Closure|array $tasks)
|
||||
*
|
||||
* @see \Illuminate\Concurrency\ConcurrencyManager
|
||||
*/
|
||||
class Concurrency extends Facade
|
||||
{
|
||||
/**
|
||||
* Get the registered name of the component.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected static function getFacadeAccessor()
|
||||
{
|
||||
return ConcurrencyManager::class;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user