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.19.255.50
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; /** * Represents the metadata for the entire class hierarchy. * * @author Johannes M. Schmitt <schmittjoh@gmail.com> */ class ClassHierarchyMetadata { /** * @var ClassMetadata[] */ public $classMetadata = []; public function addClassMetadata(ClassMetadata $metadata): void { $this->classMetadata[$metadata->name] = $metadata; } public function getRootClassMetadata(): ?ClassMetadata { return reset($this->classMetadata); } public function getOutsideClassMetadata(): ?ClassMetadata { return end($this->classMetadata); } public function isFresh(int $timestamp): bool { foreach ($this->classMetadata as $metadata) { if (!$metadata->isFresh($timestamp)) { return false; } } return true; } }