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 /
wb /
vendor /
symfony /
serializer /
Mapping /
Delete
Unzip
Name
Size
Permission
Date
Action
Factory
[ DIR ]
drwxrwxr-x
2022-07-28 13:33
Loader
[ DIR ]
drwxrwxr-x
2022-07-28 13:33
AttributeMetadata.php
6.58
KB
-rw-rw-r--
2022-07-28 13:33
AttributeMetadataInterface.php
2.71
KB
-rw-rw-r--
2022-07-28 13:33
ClassDiscriminatorFromClassMetadata.php
2.69
KB
-rw-rw-r--
2022-07-28 13:33
ClassDiscriminatorMapping.php
1.47
KB
-rw-rw-r--
2022-07-28 13:33
ClassDiscriminatorResolverInterface.php
807
B
-rw-rw-r--
2022-07-28 13:33
ClassMetadata.php
3.44
KB
-rw-rw-r--
2022-07-28 13:33
ClassMetadataInterface.php
1.51
KB
-rw-rw-r--
2022-07-28 13:33
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Serializer\Mapping; /** * Stores metadata needed for serializing and deserializing objects of specific class. * * Primarily, the metadata stores the set of attributes to serialize or deserialize. * * There may only exist one metadata for each attribute according to its name. * * @internal * * @author Kévin Dunglas <dunglas@gmail.com> */ interface ClassMetadataInterface { /** * Returns the name of the backing PHP class. */ public function getName(): string; /** * Adds an {@link AttributeMetadataInterface}. */ public function addAttributeMetadata(AttributeMetadataInterface $attributeMetadata); /** * Gets the list of {@link AttributeMetadataInterface}. * * @return AttributeMetadataInterface[] */ public function getAttributesMetadata(): array; /** * Merges a {@link ClassMetadataInterface} in the current one. */ public function merge(self $classMetadata); /** * Returns a {@link \ReflectionClass} instance for this class. */ public function getReflectionClass(): \ReflectionClass; public function getClassDiscriminatorMapping(): ?ClassDiscriminatorMapping; public function setClassDiscriminatorMapping(ClassDiscriminatorMapping $mapping = null); }