webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Console
/
Concerns
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
CallsCommands.php
2.969KB
edt
ren
ConfiguresPrompts.php
5.751KB
edt
ren
CreatesMatchingTest.php
1.153KB
edt
ren
HasParameters.php
1.378KB
edt
ren
InteractsWithIO.php
11.163KB
edt
ren
InteractsWithSignals.php
1.153KB
edt
ren
PromptsForMissingInput.php
3.379KB
edt
ren
<?php namespace Illuminate\Console\Concerns; use Illuminate\Console\Signals; use Illuminate\Support\Arr; trait InteractsWithSignals { /** * The signal registrar instance. * * @var \Illuminate\Console\Signals|null */ protected $signals; /** * Define a callback to be run when the given signal(s) occurs. * * @param iterable<array-key, int>|int $signals * @param callable(int $signal): void $callback * @return void */ public function trap($signals, $callback) { Signals::whenAvailable(function () use ($signals, $callback) { $this->signals ??= new Signals( $this->getApplication()->getSignalRegistry(), ); collect(Arr::wrap($signals)) ->each(fn ($signal) => $this->signals->register($signal, $callback)); }); } /** * Untrap signal handlers set within the command's handler. * * @return void * * @internal */ public function untrap() { if (! is_null($this->signals)) { $this->signals->unregister(); $this->signals = null; } } }
<=Back
Liking