X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/vendor/illuminate/support/Facades
home
/
gfecatvj
/
sites
/
vendor
/
illuminate
/
support
/
Facades
/
📁
..
📄
App.php
(2.34 KB)
📄
Artisan.php
(1.06 KB)
📄
Auth.php
(2.37 KB)
📄
Blade.php
(1.57 KB)
📄
Broadcast.php
(740 B)
📄
Bus.php
(1.78 KB)
📄
Cache.php
(1.6 KB)
📄
Config.php
(557 B)
📄
Cookie.php
(973 B)
📄
Crypt.php
(718 B)
📄
DB.php
(1.65 KB)
📄
Date.php
(5.46 KB)
📄
Event.php
(2.53 KB)
📄
Facade.php
(5.96 KB)
📄
File.php
(2.6 KB)
📄
Gate.php
(1.67 KB)
📄
Hash.php
(585 B)
📄
Http.php
(3.04 KB)
📄
Lang.php
(668 B)
📄
Log.php
(1.05 KB)
📄
Mail.php
(1.94 KB)
📄
Notification.php
(2.01 KB)
📄
Password.php
(1.11 KB)
📄
Queue.php
(1.9 KB)
📄
Redirect.php
(2 KB)
📄
Redis.php
(625 B)
📄
Request.php
(4.96 KB)
📄
Response.php
(2.35 KB)
📄
Route.php
(3.19 KB)
📄
Schema.php
(1.59 KB)
📄
Session.php
(1.37 KB)
📄
Storage.php
(3.51 KB)
📄
URL.php
(1.4 KB)
📄
Validator.php
(733 B)
📄
View.php
(1.12 KB)
Editing: Queue.php
<?php namespace Illuminate\Support\Facades; use Illuminate\Support\Testing\Fakes\QueueFake; /** * @method static \Illuminate\Contracts\Queue\Job|null pop(string $queue = null) * @method static \Illuminate\Contracts\Queue\Queue setConnectionName(string $name) * @method static int size(string $queue = null) * @method static mixed bulk(array $jobs, mixed $data = '', string $queue = null) * @method static mixed later(\DateTimeInterface|\DateInterval|int $delay, string|object $job, mixed $data = '', string $queue = null) * @method static mixed laterOn(string $queue, \DateTimeInterface|\DateInterval|int $delay, string|object $job, mixed $data = '') * @method static mixed push(string|object $job, mixed $data = '', $queue = null) * @method static mixed pushOn(string $queue, string|object $job, mixed $data = '') * @method static mixed pushRaw(string $payload, string $queue = null, array $options = []) * @method static string getConnectionName() * @method static void assertNotPushed(string $job, callable $callback = null) * @method static void assertNothingPushed() * @method static void assertPushed(string $job, callable|int $callback = null) * @method static void assertPushedOn(string $queue, string $job, callable|int $callback = null) * @method static void assertPushedWithChain(string $job, array $expectedChain = [], callable $callback = null) * * @see \Illuminate\Queue\QueueManager * @see \Illuminate\Queue\Queue */ class Queue extends Facade { /** * Replace the bound instance with a fake. * * @return \Illuminate\Support\Testing\Fakes\QueueFake */ public static function fake() { static::swap($fake = new QueueFake(static::getFacadeApplication())); return $fake; } /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return 'queue'; } }
Upload File
Create Folder