REDROOM
PHP 8.3.31
Path:
Logout
Edit File
Size: 870 B
Close
/home/getspomw/royalsquad.us/vendor/laravel/framework/src/Illuminate/Queue/Middleware/Skip.php
Text
Base64
<?php namespace Illuminate\Queue\Middleware; use Closure; class Skip { public function __construct(protected bool $skip = false) { } /** * Apply the middleware if the given condition is truthy. * * @param bool|Closure(): bool $condition */ public static function when(Closure|bool $condition): self { return new self(value($condition)); } /** * Apply the middleware unless the given condition is truthy. * * @param bool|Closure(): bool $condition */ public static function unless(Closure|bool $condition): self { return new self(! value($condition)); } /** * Handle the job. */ public function handle(mixed $job, callable $next): mixed { if ($this->skip) { return false; } return $next($job); } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 7
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
RateLimited.php
3.33 KB
lrw-rw-rw-
2025-09-17 06:52:57
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
RateLimitedWithRedis.php
2.45 KB
lrw-rw-rw-
2025-09-17 06:52:57
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Skip.php
870 B
lrw-rw-rw-
2025-09-17 06:52:57
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
SkipIfBatchCancelled.php
383 B
lrw-rw-rw-
2025-09-17 06:52:57
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
ThrottlesExceptions.php
4.91 KB
lrw-rw-rw-
2025-09-17 06:52:57
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
ThrottlesExceptionsWithRedis.php
1.62 KB
lrw-rw-rw-
2025-09-17 06:52:57
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
WithoutOverlapping.php
3.45 KB
lrw-rw-rw-
2025-09-17 06:52:57
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).