webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
sebastian
/
type
/
src
/
type
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
CallableType.php
4.204KB
edt
ren
FalseType.php
0.859KB
edt
ren
GenericObjectType.php
1.021KB
edt
ren
IntersectionType.php
2.729KB
edt
ren
IterableType.php
1.472KB
edt
ren
MixedType.php
0.775KB
edt
ren
NeverType.php
0.697KB
edt
ren
NullType.php
0.772KB
edt
ren
ObjectType.php
1.526KB
edt
ren
SimpleType.php
1.803KB
edt
ren
StaticType.php
1.43KB
edt
ren
TrueType.php
0.854KB
edt
ren
Type.php
4.165KB
edt
ren
UnionType.php
2.89KB
edt
ren
UnknownType.php
0.761KB
edt
ren
VoidType.php
0.693KB
edt
ren
<?php declare(strict_types=1); /* * This file is part of sebastian/type. * * (c) Sebastian Bergmann <sebastian@phpunit.de> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace SebastianBergmann\Type; final class NeverType extends Type { public function isAssignable(Type $other): bool { return $other instanceof self; } public function name(): string { return 'never'; } public function allowsNull(): bool { return false; } /** * @psalm-assert-if-true NeverType $this */ public function isNever(): bool { return true; } }
<=Back
Liking