This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Serializer
Fabien Potencier 61575e7a7a minor #17663 [Serializer] Remove unused code (dunglas)
This PR was squashed before being merged into the 3.1-dev branch (closes #17663).

Discussion
----------

[Serializer] Remove unused code

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | n/a
| License       | MIT
| Doc PR        | n/a

Commits
-------

61b8494 [Serializer] Remove unused code
2016-02-06 08:06:45 +01:00
..
Annotation [Serializer] Add a MaxDepth option 2016-01-26 13:18:08 +01:00
Encoder Merge branch '2.8' 2015-11-18 14:48:51 +01:00
Exception Merge branch '2.8' 2015-08-24 09:21:16 +02:00
Mapping Merge branch '3.0' 2016-02-04 13:57:09 +01:00
NameConverter [Serializer] Minor: fix CS and PHPDoc 2016-01-26 13:15:44 +01:00
Normalizer minor #17663 [Serializer] Remove unused code (dunglas) 2016-02-06 08:06:45 +01:00
Tests [Serializer] Add missing @requires annotations 2016-02-05 08:26:32 +01:00
.gitignore Added missing files .gitignore 2013-07-21 14:12:18 +02:00
CHANGELOG.md [Serializer] Introduce ObjectNormalizer 2015-03-06 11:52:53 +01:00
composer.json [Serializer] Add PSR-6 adapter 2016-01-27 05:42:01 +01:00
LICENSE Update copyright year 2016-01-01 23:53:47 -03:00
phpunit.xml.dist Add missing exclusions from phpunit.xml.dist 2015-11-18 09:19:46 +01:00
README.md fixed typo 2015-05-16 14:34:16 +02:00
Serializer.php [Serializer] Minor: fix CS and PHPDoc 2016-01-26 13:15:44 +01:00
SerializerAwareInterface.php [2.3] CS And DocBlock Fixes 2014-12-22 16:58:09 +01:00
SerializerInterface.php [2.3] CS And DocBlock Fixes 2014-12-22 16:58:09 +01:00

Serializer Component

With the Serializer component it's possible to handle serializing data structures, including object graphs, into array structures or other formats like XML and JSON. It can also handle deserializing XML and JSON back to object graphs.

Resources

You can run the unit tests with the following command:

$ cd path/to/Symfony/Component/Serializer/
$ composer install
$ phpunit