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 : 3.144.132.48
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
vendor /
dasprid /
enum /
test /
Delete
Unzip
Name
Size
Permission
Date
Action
AbstractEnumTest.php
3.71
KB
-rw-r--r--
2020-10-02 09:00
EnumMapTest.php
7.46
KB
-rw-r--r--
2020-10-02 09:00
NullValueTest.php
916
B
-rw-r--r--
2020-10-02 09:00
Planet.php
1.6
KB
-rw-r--r--
2020-10-02 09:00
WeekDay.php
633
B
-rw-r--r--
2020-10-02 09:00
Save
Rename
<?php declare(strict_types = 1); namespace DASPRiD\EnumTest; use DASPRiD\Enum\Exception\CloneNotSupportedException; use DASPRiD\Enum\Exception\SerializeNotSupportedException; use DASPRiD\Enum\Exception\UnserializeNotSupportedException; use DASPRiD\Enum\NullValue; use PHPUnit\Framework\TestCase; final class NullValueTest extends TestCase { public function testExceptionOnCloneAttempt() : void { $this->expectException(CloneNotSupportedException::class); clone NullValue::instance(); } public function testExceptionOnSerializeAttempt() : void { $this->expectException(SerializeNotSupportedException::class); serialize(NullValue::instance()); } public function testExceptionOnUnserializeAttempt() : void { $this->expectException(UnserializeNotSupportedException::class); unserialize('O:22:"DASPRiD\\Enum\\NullValue":0:{}'); } }