1 | <?php |
||
2 | |||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
3 | namespace DMT\Insolvency\Model; |
||
4 | |||
5 | use JMS\Serializer\Annotation as JMS; |
||
6 | |||
7 | /** |
||
8 | * Class Adressen |
||
9 | * |
||
10 | * @JMS\XmlNamespace("http://www.rechtspraak.nl/namespaces/inspubber01") |
||
11 | * @JMS\XmlRoot("adressen", namespace="http://www.rechtspraak.nl/namespaces/inspubber01") |
||
0 ignored issues
–
show
|
|||
12 | */ |
||
0 ignored issues
–
show
|
|||
13 | class Adressen |
||
14 | { |
||
15 | /** |
||
0 ignored issues
–
show
|
|||
16 | * @JMS\SerializedName("geheimAdres") |
||
17 | * @JMS\Type("bool") |
||
18 | * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/inspubber01") |
||
0 ignored issues
–
show
|
|||
19 | * |
||
20 | * @var bool $geheimAdres |
||
21 | */ |
||
22 | public $geheimAdres; |
||
23 | |||
24 | /** |
||
0 ignored issues
–
show
|
|||
25 | * @JMS\Type("array<DMT\Insolvency\Model\Adres>") |
||
26 | * @JMS\XmlList(inline=true, entry="adres", namespace="http://www.rechtspraak.nl/namespaces/inspubber01") |
||
0 ignored issues
–
show
|
|||
27 | * |
||
28 | * @var Adres[] $adres |
||
29 | */ |
||
30 | public $adres; |
||
31 | } |
||
32 |