1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace Symfony\Tests\Component\Serializer\Fixtures;
- use Symfony\Component\Serializer\Normalizer\NormalizableInterface;
- use Symfony\Component\Serializer\SerializerInterface;
- class Dummy implements NormalizableInterface
- {
- public $foo;
- public $bar;
- public $baz;
- public $qux;
- public function normalize(SerializerInterface $serializer, $format = null)
- {
- return array(
- 'foo' => $this->foo,
- 'bar' => $this->bar,
- 'baz' => $this->baz,
- 'qux' => $this->qux,
- );
- }
- public function denormalize(SerializerInterface $serializer, $data, $format = null)
- {
- $this->foo = $data['foo'];
- $this->bar = $data['bar'];
- $this->baz = $data['baz'];
- $this->qux = $data['qux'];
- }
- }
|