| 123456789101112131415161718192021222324 |
- <?php
- namespace JMS\Serializer\Tests\Fixtures;
- use JMS\Serializer\Annotation as Serializer;
- /**
- * @Serializer\ExclusionPolicy("ALL")
- * @Serializer\AccessorOrder("custom",custom = {"name", "gender"})
- */
- class PersonSecretMore
- {
- /**
- * @Serializer\Type("string")
- * @Serializer\Expose()
- */
- public $name;
- /**
- * @Serializer\Type("string")
- * @Serializer\Expose(if="show_data('gender')")
- */
- public $gender;
- }
|