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 : 18.222.227.24
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
jms /
metadata /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Cache
[ DIR ]
drwxrwxr-x
2021-11-22 12:27
Driver
[ DIR ]
drwxrwxr-x
2021-11-22 12:27
AdvancedMetadataFactoryInterface.php
509
B
-rw-rw-r--
2021-11-22 12:27
ClassHierarchyMetadata.php
904
B
-rw-rw-r--
2021-11-22 12:27
ClassMetadata.php
2
KB
-rw-rw-r--
2021-11-22 12:27
MergeableClassMetadata.php
821
B
-rw-rw-r--
2021-11-22 12:27
MergeableInterface.php
148
B
-rw-rw-r--
2021-11-22 12:27
MetadataFactory.php
5.94
KB
-rw-rw-r--
2021-11-22 12:27
MetadataFactoryInterface.php
915
B
-rw-rw-r--
2021-11-22 12:27
MethodMetadata.php
1.75
KB
-rw-rw-r--
2021-11-22 12:27
NullMetadata.php
223
B
-rw-rw-r--
2021-11-22 12:27
PropertyMetadata.php
845
B
-rw-rw-r--
2021-11-22 12:27
SerializationHelper.php
688
B
-rw-rw-r--
2021-11-22 12:27
Save
Rename
<?php declare(strict_types=1); namespace Metadata; /** * Base class for property metadata. * * This class is intended to be extended to add your application specific * properties, and flags. * * @author Johannes M. Schmitt <schmittjoh@gmail.com> */ class PropertyMetadata implements \Serializable { use SerializationHelper; /** * @var string */ public $class; /** * @var string */ public $name; public function __construct(string $class, string $name) { $this->class = $class; $this->name = $name; } protected function serializeToArray(): array { return [ $this->class, $this->name, ]; } protected function unserializeFromArray(array $data): void { [$this->class, $this->name] = $data; } }