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.223.33.204
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; class StaticPropertyMetadata extends PropertyMetadata { /** * @var mixed */ private $value; /** * StaticPropertyMetadata constructor. * * @param mixed $fieldValue * @param array $groups */ public function __construct(string $className, string $fieldName, $fieldValue, array $groups = []) { $this->class = $className; $this->name = $fieldName; $this->serializedName = $fieldName; $this->value = $fieldValue; $this->readOnly = true; $this->groups = $groups; } /** * @return mixed */ public function getValue() { return $this->value; } public function setAccessor(string $type, ?string $getter = null, ?string $setter = null): void { } protected function serializeToArray(): array { return [ $this->value, parent::serializeToArray(), ]; } protected function unserializeFromArray(array $data): void { [ $this->value, $parentData, ] = $data; parent::unserializeFromArray($parentData); } }