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

26 lines
683 B
PHP
Raw Normal View History

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