TestDenormalizer.php in Zircon Profile 8
File
vendor/symfony/serializer/Tests/Normalizer/TestDenormalizer.php
View source
<?php
namespace Symfony\Component\Serializer\Tests\Normalizer;
use Symfony\Component\Serializer\Normalizer\DenormalizerInterface;
class TestDenormalizer implements DenormalizerInterface {
public function denormalize($data, $class, $format = null, array $context = array()) {
}
public function supportsDenormalization($data, $type, $format = null) {
return true;
}
}
Classes
Name |
Description |
TestDenormalizer |
Provides a test Normalizer which only implements the DenormalizerInterface. |