File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/laravel/framework/src/Illuminate/Support/Facades
Upload
[..]
App.php (9.59 KB)
Edit
Rename
Del
Artisan.php (1.91 KB)
Edit
Rename
Del
Auth.php (5.07 KB)
Edit
Rename
Del
Blade.php (3.06 KB)
Edit
Rename
Del
Broadcast.php (2.75 KB)
Edit
Rename
Del
Bus.php (5.26 KB)
Edit
Rename
Del
Cache.php (6.04 KB)
Edit
Rename
Del
Concurrency.php (1.44 KB)
Edit
Rename
Del
Config.php (1.37 KB)
Edit
Rename
Del
Cookie.php (2.39 KB)
Edit
Rename
Del
Crypt.php (928 B)
Edit
Rename
Del
DB.php (8.39 KB)
Edit
Rename
Del
Date.php (8.18 KB)
Edit
Rename
Del
Event.php (5.07 KB)
Edit
Rename
Del
Facade.php (9.11 KB)
Edit
Rename
Del
Gate.php (2.77 KB)
Edit
Rename
Del
Hash.php (1.36 KB)
Edit
Rename
Del
Http.php (10.74 KB)
Edit
Rename
Del
Lang.php (2.35 KB)
Edit
Rename
Del
Log.php (2.84 KB)
Edit
Rename
Del
Mail.php (5.25 KB)
Edit
Rename
Del
MaintenanceMode.php (948 B)
Edit
Rename
Del
Notification.php (4.04 KB)
Edit
Rename
Del
Password.php (2.41 KB)
Edit
Rename
Del
Pipeline.php (1.62 KB)
Edit
Rename
Del
Queue.php (8.02 KB)
Edit
Rename
Del
RateLimiter.php (1.38 KB)
Edit
Rename
Del
Redirect.php (2.33 KB)
Edit
Rename
Del
Redis.php (23.75 KB)
Edit
Rename
Del
Request.php (11.82 KB)
Edit
Rename
Del
Response.php (2.94 KB)
Edit
Rename
Del
Session.php (4.02 KB)
Edit
Rename
Del
Storage.php (9.1 KB)
Edit
Rename
Del
URL.php (3.89 KB)
Edit
Rename
Del
Validator.php (1.54 KB)
Edit
Rename
Del
View.php (5.5 KB)
Edit
Rename
Del
Vite.php (2.52 KB)
Edit
Rename
Del
Edit: Bus.php
<?php namespace Illuminate\Support\Facades; use Illuminate\Bus\BatchRepository; use Illuminate\Contracts\Bus\Dispatcher as BusDispatcherContract; use Illuminate\Foundation\Bus\PendingChain; use Illuminate\Support\Testing\Fakes\BusFake; /** * @method static mixed dispatch(mixed $command) * @method static mixed dispatchSync(mixed $command, mixed $handler = null) * @method static mixed dispatchNow(mixed $command, mixed $handler = null) * @method static void bulk(iterable $jobs) * @method static \Illuminate\Bus\Batch|null findBatch(string $batchId) * @method static \Illuminate\Bus\PendingBatch batch(\Illuminate\Support\Collection|mixed $jobs) * @method static \Illuminate\Foundation\Bus\PendingChain chain(\Illuminate\Support\Collection|array|null $jobs = null) * @method static bool hasCommandHandler(mixed $command) * @method static mixed getCommandHandler(mixed $command) * @method static mixed dispatchToQueue(mixed $command) * @method static void dispatchAfterResponse(mixed $command, mixed $handler = null) * @method static \Illuminate\Bus\Dispatcher pipeThrough(array $pipes) * @method static \Illuminate\Bus\Dispatcher map(array $map) * @method static \Illuminate\Bus\Dispatcher withDispatchingAfterResponses() * @method static \Illuminate\Bus\Dispatcher withoutDispatchingAfterResponses() * @method static string|null resolveConnectionFromQueueRoute(object $queueable) * @method static string|null resolveQueueFromQueueRoute(object $queueable) * @method static \Illuminate\Support\Testing\Fakes\BusFake except(array|string $jobsToDispatch) * @method static void assertDispatched(string|\Closure $command, callable|int|null $callback = null) * @method static void assertDispatchedOnce(string|\Closure $command) * @method static void assertDispatchedTimes(string|\Closure $command, int $times = 1) * @method static void assertNotDispatched(string|\Closure $command, callable|null $callback = null) * @method static void assertNothingDispatched() * @method static void assertDispatchedSync(string|\Closure $command, callable|int|null $callback = null) * @method static void assertDispatchedSyncTimes(string|\Closure $command, int $times = 1) * @method static void assertNotDispatchedSync(string|\Closure $command, callable|null $callback = null) * @method static void assertDispatchedAfterResponse(string|\Closure $command, callable|int|null $callback = null) * @method static void assertDispatchedAfterResponseTimes(string|\Closure $command, int $times = 1) * @method static void assertNotDispatchedAfterResponse(string|\Closure $command, callable|null $callback = null) * @method static void assertChained(array $expectedChain) * @method static void assertNothingChained() * @method static void assertDispatchedWithoutChain(string|\Closure $command, callable|null $callback = null) * @method static \Illuminate\Support\Testing\Fakes\ChainedBatchTruthTest chainedBatch(\Closure $callback) * @method static void assertBatched(array|callable $callback) * @method static void assertBatchCount(int $count) * @method static void assertNothingBatched() * @method static void assertNothingPlaced() * @method static \Illuminate\Support\Collection dispatched(string $command, callable|null $callback = null) * @method static \Illuminate\Support\Collection dispatchedSync(string $command, callable|null $callback = null) * @method static \Illuminate\Support\Collection dispatchedAfterResponse(string $command, callable|null $callback = null) * @method static \Illuminate\Support\Collection batched(callable $callback) * @method static bool hasDispatched(string $command) * @method static bool hasDispatchedSync(string $command) * @method static bool hasDispatchedAfterResponse(string $command) * @method static \Illuminate\Bus\Batch dispatchFakeBatch(string $name = '') * @method static \Illuminate\Bus\Batch recordPendingBatch(\Illuminate\Bus\PendingBatch $pendingBatch) * @method static \Illuminate\Support\Testing\Fakes\BusFake serializeAndRestore(bool $serializeAndRestore = true) * @method static array dispatchedBatches() * * @see \Illuminate\Bus\Dispatcher * @see \Illuminate\Support\Testing\Fakes\BusFake */ class Bus extends Facade { /** * Replace the bound instance with a fake. * * @param array|string $jobsToFake * @param \Illuminate\Bus\BatchRepository|null $batchRepository * @return \Illuminate\Support\Testing\Fakes\BusFake */ public static function fake($jobsToFake = [], ?BatchRepository $batchRepository = null) { $actualDispatcher = static::isFake() ? static::getFacadeRoot()->dispatcher : static::getFacadeRoot(); return tap(new BusFake($actualDispatcher, $jobsToFake, $batchRepository), function ($fake) { static::swap($fake); }); } /** * Dispatch the given chain of jobs. * * @param mixed $jobs * @return \Illuminate\Foundation\Bus\PendingDispatch */ public static function dispatchChain($jobs) { $jobs = is_array($jobs) ? $jobs : func_get_args(); return (new PendingChain(array_shift($jobs), $jobs)) ->dispatch(); } /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return BusDispatcherContract::class; } }
Simpan