1<?php 2 3declare(strict_types=1); 4 5namespace JMS\Serializer\Tests\Fixtures; 6 7use JMS\Serializer\Annotation as Serializer; 8 9class ObjectWithEmptyHash 10{ 11 /** 12 * @Serializer\Type("array<string,string>") 13 * @Serializer\XmlList(skipWhenEmpty=false) 14 */ 15 private $hash = []; 16} 17