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 TypeName { /** * @var ?string */ private $namespaceName; /** * @var string */ private $simpleName; public static function fromQualifiedName(string $fullClassName): self { if ($fullClassName[0] === '\\') { $fullClassName = \substr($fullClassName, 1); } $classNameParts = \explode('\\', $fullClassName); $simpleName = \array_pop($classNameParts); $namespaceName = \implode('\\', $classNameParts); return new self($namespaceName, $simpleName); } public static function fromReflection(\ReflectionClass $type): self { return new self( $type->getNamespaceName(), $type->getShortName() ); } public function __construct(?string $namespaceName, string $simpleName) { if ($namespaceName === '') { $namespaceName = null; } $this->namespaceName = $namespaceName; $this->simpleName = $simpleName; } public function getNamespaceName(): ?string { return $this->namespaceName; } public function getSimpleName(): string { return $this->simpleName; } public function getQualifiedName(): string { return $this->namespaceName === null ? $this->simpleName : $this->namespaceName . '\\' . $this->simpleName; } public function isNamespaced(): bool { return $this->namespaceName !== null; } }