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.15.10.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; /** * Interface for Metadata Factory implementations. * * @author Johannes M. Schmitt <schmittjoh@gmail.com> */ interface MetadataFactoryInterface { /** * Returns the gathered metadata for the given class name. * * If the drivers return instances of MergeableClassMetadata, these will be * merged prior to returning. Otherwise, all metadata for the inheritance * hierarchy will be returned as ClassHierarchyMetadata unmerged. * * If no metadata is available, null is returned. * * @return ClassHierarchyMetadata|MergeableClassMetadata|null * * @phpcsSuppress SlevomatCodingStandard.TypeHints.ReturnTypeHint.MissingNativeTypeHint * @phpcsSuppress SlevomatCodingStandard.TypeHints.TypeHintDeclaration.UselessReturnAnnotation */ public function getMetadataForClass(string $className); }