ObjectWithEmptyHash.php 266 B

1234567891011121314
  1. <?php
  2. namespace JMS\Serializer\Tests\Fixtures;
  3. use JMS\Serializer\Annotation as Serializer;
  4. class ObjectWithEmptyHash
  5. {
  6. /**
  7. * @Serializer\Type("array<string,string>")
  8. * @Serializer\XmlList(skipWhenEmpty=false)
  9. */
  10. private $hash = array();
  11. }