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/tests/Symfony/Tests/Component/Serializer/Fixtures/Dummy.php
Fabien Potencier 17cd08dc6c fixed CS
2011-06-08 19:56:59 +02:00

33 lines
800 B
PHP

<?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'];
}
}