Yaffs site version 1.1
[yaffs-website] / vendor / symfony / serializer / Tests / Fixtures / NormalizableTraversableDummy.php
1 <?php
2
3 /*
4  * This file is part of the Symfony package.
5  *
6  * (c) Fabien Potencier <fabien@symfony.com>
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 namespace Symfony\Component\Serializer\Tests\Fixtures;
13
14 use Symfony\Component\Serializer\Normalizer\NormalizableInterface;
15 use Symfony\Component\Serializer\Normalizer\DenormalizableInterface;
16 use Symfony\Component\Serializer\Normalizer\NormalizerInterface;
17 use Symfony\Component\Serializer\Normalizer\DenormalizerInterface;
18
19 class NormalizableTraversableDummy extends TraversableDummy implements NormalizableInterface, DenormalizableInterface
20 {
21     public function normalize(NormalizerInterface $normalizer, $format = null, array $context = array())
22     {
23         return array(
24             'foo' => 'normalizedFoo',
25             'bar' => 'normalizedBar',
26         );
27     }
28
29     public function denormalize(DenormalizerInterface $denormalizer, $data, $format = null, array $context = array())
30     {
31         return array(
32             'foo' => 'denormalizedFoo',
33             'bar' => 'denormalizedBar',
34         );
35     }
36 }