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/ScalarDummy.php
Fabien Potencier 17cd08dc6c fixed CS
2011-06-08 19:56:59 +02:00

27 lines
660 B
PHP

<?php
namespace Symfony\Tests\Component\Serializer\Fixtures;
use Symfony\Component\Serializer\Normalizer\NormalizableInterface;
use Symfony\Component\Serializer\SerializerInterface;
class ScalarDummy implements NormalizableInterface
{
public $foo;
public $xmlFoo;
public function normalize(SerializerInterface $serializer, $format = null)
{
return $format === 'xml' ? $this->xmlFoo : $this->foo;
}
public function denormalize(SerializerInterface $serializer, $data, $format = null)
{
if ($format === 'xml') {
$this->xmlFoo = $data;
} else {
$this->foo = $data;
}
}
}