File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/laravel/framework/src/Illuminate/Support/Facades
Upload
[..]
Artisan.php (1.91 KB)
Edit
Rename
Del
Blade.php (3.06 KB)
Edit
Rename
Del
Broadcast.php (2.75 KB)
Edit
Rename
Del
Cache.php (6.04 KB)
Edit
Rename
Del
Concurrency.php (1.44 KB)
Edit
Rename
Del
Date.php (8.18 KB)
Edit
Rename
Del
Facade.php (9.11 KB)
Edit
Rename
Del
Http.php (10.74 KB)
Edit
Rename
Del
Notification.php (4.04 KB)
Edit
Rename
Del
Pipeline.php (1.62 KB)
Edit
Rename
Del
Queue.php (8.02 KB)
Edit
Rename
Del
Redirect.php (2.33 KB)
Edit
Rename
Del
Redis.php (23.75 KB)
Edit
Rename
Del
Response.php (2.94 KB)
Edit
Rename
Del
Edit: Concurrency.php
<?php namespace Illuminate\Support\Facades; use Illuminate\Concurrency\ConcurrencyManager; /** * @method static mixed driver(\UnitEnum|string|null $name = null) * @method static \Illuminate\Concurrency\ProcessDriver createProcessDriver() * @method static \Illuminate\Concurrency\ForkDriver createForkDriver() * @method static \Illuminate\Concurrency\SyncDriver createSyncDriver() * @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, \Carbon\CarbonInterval|int|null $timeout = null) * @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; } }
Simpan