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 /
tests /
unit /
Delete
Unzip
Name
Size
Permission
Date
Action
CallableTypeTest.php
4.04
KB
-rw-r--r--
2020-11-17 16:24
GenericObjectTypeTest.php
2.09
KB
-rw-r--r--
2020-11-17 16:24
IterableTypeTest.php
2.39
KB
-rw-r--r--
2020-11-17 16:24
NullTypeTest.php
1.67
KB
-rw-r--r--
2020-11-17 16:24
ObjectTypeTest.php
3.93
KB
-rw-r--r--
2020-11-17 16:24
SimpleTypeTest.php
4.9
KB
-rw-r--r--
2020-11-17 16:24
TypeNameTest.php
2.1
KB
-rw-r--r--
2020-11-17 16:24
TypeTest.php
3.95
KB
-rw-r--r--
2020-11-17 16:24
UnknownTypeTest.php
1.39
KB
-rw-r--r--
2020-11-17 16:24
VoidTypeTest.php
1.65
KB
-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; use PHPUnit\Framework\TestCase; /** * @covers \SebastianBergmann\Type\UnknownType */ final class UnknownTypeTest extends TestCase { /** * @var UnknownType */ private $type; protected function setUp(): void { $this->type = new UnknownType; } /** * @dataProvider assignableTypes */ public function testIsAssignable(Type $assignableType): void { $this->assertTrue($this->type->isAssignable($assignableType)); } public function assignableTypes(): array { return [ [new SimpleType('int', false)], [new SimpleType('int', true)], [new VoidType], [new ObjectType(TypeName::fromQualifiedName(self::class), false)], [new ObjectType(TypeName::fromQualifiedName(self::class), true)], [new UnknownType], ]; } public function testAllowsNull(): void { $this->assertTrue($this->type->allowsNull()); } public function testReturnTypeDeclaration(): void { $this->assertEquals('', $this->type->getReturnTypeDeclaration()); } }