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; final class SimpleType extends Type { /** * @var string */ private $name; /** * @var bool */ private $allowsNull; /** * @var mixed */ private $value; public function __construct(string $name, bool $nullable, $value = null) { $this->name = $this->normalize($name); $this->allowsNull = $nullable; $this->value = $value; } public function isAssignable(Type $other): bool { if ($this->allowsNull && $other instanceof NullType) { return true; } if ($other instanceof self) { return $this->name === $other->name; } return false; } public function getReturnTypeDeclaration(): string { return ': ' . ($this->allowsNull ? '?' : '') . $this->name; } public function allowsNull(): bool { return $this->allowsNull; } public function value() { return $this->value; } private function normalize(string $name): string { $name = \strtolower($name); switch ($name) { case 'boolean': return 'bool'; case 'real': case 'double': return 'float'; case 'integer': return 'int'; case '[]': return 'array'; default: return $name; } } }