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 InspubZittingslocatie |
||
9 | * |
||
10 | * @JMS\XmlNamespace("http://www.rechtspraak.nl/namespaces/inspubber01") |
||
11 | * @JMS\XmlRoot("inspubZittingslocatie", namespace="http://www.rechtspraak.nl/namespaces/inspubber01") |
||
0 ignored issues
–
show
|
|||
12 | */ |
||
0 ignored issues
–
show
|
|||
13 | class InspubZittingslocatie |
||
14 | { |
||
15 | /** |
||
0 ignored issues
–
show
|
|||
16 | * @JMS\SerializedName("straat") |
||
17 | * @JMS\Type("string") |
||
18 | * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/inspubber01") |
||
0 ignored issues
–
show
|
|||
19 | * |
||
20 | * @var string $straat |
||
21 | */ |
||
22 | public $straat; |
||
23 | |||
24 | /** |
||
0 ignored issues
–
show
|
|||
25 | * @JMS\SerializedName("huisnummer") |
||
26 | * @JMS\Type("string") |
||
27 | * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/inspubber01") |
||
0 ignored issues
–
show
|
|||
28 | * |
||
29 | * @var string $huisnummer |
||
30 | */ |
||
31 | public $huisnummer; |
||
32 | |||
33 | /** |
||
0 ignored issues
–
show
|
|||
34 | * @JMS\SerializedName("huisnummerToevoeging") |
||
35 | * @JMS\Type("string") |
||
36 | * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/inspubber01") |
||
0 ignored issues
–
show
|
|||
37 | * |
||
38 | * @var string $huisnummerToevoeging |
||
39 | */ |
||
40 | public $huisnummerToevoeging; |
||
41 | |||
42 | /** |
||
0 ignored issues
–
show
|
|||
43 | * @JMS\SerializedName("plaats") |
||
44 | * @JMS\Type("string") |
||
45 | * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/inspubber01") |
||
0 ignored issues
–
show
|
|||
46 | * |
||
47 | * @var string $plaats |
||
48 | */ |
||
49 | public $plaats; |
||
50 | } |
||
51 |