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\Events\CommandStarting; use Illuminate\Contracts\Foundation\Application; use Illuminate\Log\Events\MessageLogged; use Illuminate\Queue\Events\JobExceptionOccurred; use Illuminate\Queue\Events\JobProcessed; use Illuminate\Queue\Events\JobProcessing; use Illuminate\Support\ServiceProvider; use Laravel\Pail\Console\Commands\PailCommand; class PailServiceProvider extends ServiceProvider { /** * Registers the application services. */ public function register(): void { $this->app->singleton( Files::class, fn (Application $app) => new Files($app->storagePath('pail')) ); $this->app->singleton(Handler::class, fn (Application $app) => new Handler( $app, $app->make(Files::class), $app->runningInConsole(), )); } /** * Bootstraps the application services. */ public function boot(): void { if (! $this->runningPailTests() && ($this->app->runningUnitTests() || ($_ENV['VAPOR_SSM_PATH'] ?? false))) { return; } /** @var \Illuminate\Contracts\Events\Dispatcher $events */ $events = $this->app->make('events'); $events->listen(MessageLogged::class, function (MessageLogged $messageLogged) { /** @var Handler $handler */ $handler = $this->app->make(Handler::class); $handler->log($messageLogged); }); $events->listen([CommandStarting::class, JobProcessing::class, JobExceptionOccurred::class], function (CommandStarting|JobProcessing|JobExceptionOccurred $lifecycleEvent) { /** @var Handler $handler */ $handler = $this->app->make(Handler::class); $handler->setLastLifecycleEvent($lifecycleEvent); }); $events->listen([JobProcessed::class], function () { /** @var Handler $handler */ $handler = $this->app->make(Handler::class); $handler->setLastLifecycleEvent(null); }); if ($this->app->runningInConsole()) { $this->commands([ PailCommand::class, ]); } } /** * Determines if the Pail's test suite is running. */ protected function runningPailTests(): bool { return $_ENV['PAIL_TESTS'] ?? false; } }