1<?php 2 3declare(strict_types=1); 4 5namespace JMS\Serializer\Annotation; 6 7/** 8 * @Annotation 9 * @Target("CLASS") 10 */ 11class XmlDiscriminator 12{ 13 /** 14 * @var bool 15 */ 16 public $attribute = false; 17 18 /** 19 * @var bool 20 */ 21 public $cdata = true; 22 23 /** 24 * @var string 25 */ 26 public $namespace; 27} 28