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 ObjectType extends Type { /** * @var TypeName */ private $className; /** * @var bool */ private $allowsNull; public function __construct(TypeName $className, bool $allowsNull) { $this->className = $className; $this->allowsNull = $allowsNull; } public function isAssignable(Type $other): bool { if ($this->allowsNull && $other instanceof NullType) { return true; } if ($other instanceof self) { if (0 === \strcasecmp($this->className->getQualifiedName(), $other->className->getQualifiedName())) { return true; } if (\is_subclass_of($other->className->getQualifiedName(), $this->className->getQualifiedName(), true)) { return true; } } return false; } public function getReturnTypeDeclaration(): string { return ': ' . ($this->allowsNull ? '?' : '') . $this->className->getQualifiedName(); } public function allowsNull(): bool { return $this->allowsNull; } public function className(): TypeName { return $this->className; } }