Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
softmedya.net /
vendor /
laravel /
pail /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Console
[ DIR ]
drwxr-xr-x
2025-06-05 13:55
Contracts
[ DIR ]
drwxr-xr-x
2025-06-05 13:55
Guards
[ DIR ]
drwxr-xr-x
2025-06-05 13:55
Printers
[ DIR ]
drwxr-xr-x
2025-06-05 13:55
ValueObjects
[ DIR ]
drwxr-xr-x
2025-06-05 13:55
File.php
1.86
KB
-rw-r--r--
2025-06-05 13:55
Files.php
540
B
-rw-r--r--
2025-06-05 13:55
Handler.php
4.24
KB
-rw-r--r--
2025-06-05 13:55
LoggerFactory.php
652
B
-rw-r--r--
2025-06-05 13:55
Options.php
2.05
KB
-rw-r--r--
2025-06-05 13:55
PailServiceProvider.php
2.34
KB
-rw-r--r--
2025-06-05 13:55
ProcessFactory.php
1.84
KB
-rw-r--r--
2025-06-05 13:55
Save
Rename
<?php namespace Laravel\Pail; use Illuminate\Console\Command; use Laravel\Pail\ValueObjects\MessageLogged; class Options { /** * Creates a new instance of the tail options. */ public function __construct( protected int $timeout, protected ?string $authId, protected ?string $level, protected ?string $filter, protected ?string $message, ) { // } /** * Creates a new instance of the tail options from the given console command. */ public static function fromCommand(Command $command): static { $authId = $command->option('auth') ?? $command->option('user'); assert(is_string($authId) || $authId === null); $level = $command->option('level'); assert(is_string($level) || $level === null); $filter = $command->option('filter'); assert(is_string($filter) || $filter === null); $message = $command->option('message'); assert(is_string($message) || $message === null); $timeout = (int) $command->option('timeout'); return new static($timeout, $authId, $level, $filter, $message); } /** * Whether the tail options accept the given message logged. */ public function accepts(MessageLogged $messageLogged): bool { if (is_string($this->authId) && $messageLogged->authId() !== $this->authId) { return false; } if (is_string($this->level) && strtolower($messageLogged->level()) !== strtolower($this->level)) { return false; } if (is_string($this->filter) && ! str_contains(strtolower((string) $messageLogged), strtolower($this->filter))) { return false; } if (is_string($this->message) && ! str_contains(strtolower($messageLogged->message()), strtolower($this->message))) { return false; } return true; } /** * Returns the number of seconds before the process is killed. */ public function timeout(): int { return $this->timeout; } }