<?php/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/namespaceSymfony\Component\Serializer\Tests\Fixtures;
useSymfony\Component\Serializer\Normalizer\DenormalizableInterface;
useSymfony\Component\Serializer\Normalizer\DenormalizerInterface;
class DenormalizableDummyimplements DenormalizableInterface {
public functiondenormalize(DenormalizerInterface $denormalizer, $data, $format = null) {
}
}