Issues (1574)

src/Model/InspubCbvElem.php (22 issues)

1
<?php
2
0 ignored issues
show
Missing file doc comment
Loading history...
3
namespace DMT\Insolvency\Model;
4
5
use JMS\Serializer\Annotation as JMS;
6
7
/**
8
 * Class InspubCbvElem
9
 *
10
 * @JMS\XmlNamespace("http://www.rechtspraak.nl/namespaces/inspubber01")
11
 * @JMS\XmlRoot("inspubCbvElem", namespace="http://www.rechtspraak.nl/namespaces/inspubber01")
0 ignored issues
show
Tag value for @JMS\XmlRoot("inspubCbvElem", tag indented incorrectly; expected 41 spaces but found 1
Loading history...
12
 */
0 ignored issues
show
Missing @category tag in class comment
Loading history...
Missing @package tag in class comment
Loading history...
Missing @author tag in class comment
Loading history...
Missing @license tag in class comment
Loading history...
Missing @link tag in class comment
Loading history...
13
class InspubCbvElem implements BeheerderType
14
{
15
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
16
     * @JMS\SerializedName("datumBegin")
17
     * @JMS\Type("DateTime<'Y-m-d'>")
18
     * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/inspubber01")
0 ignored issues
show
Tag value for @JMS\XmlElement(cdata=false, tag indented incorrectly; expected 6 spaces but found 1
Loading history...
19
     *
20
     * @var \DateTime $datumBegin
21
     */
22
    public $datumBegin;
23
24
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
25
     * @JMS\SerializedName("datumEind")
26
     * @JMS\Type("DateTime<'Y-m-d'>")
27
     * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/inspubber01")
0 ignored issues
show
Tag value for @JMS\XmlElement(cdata=false, tag indented incorrectly; expected 5 spaces but found 1
Loading history...
28
     *
29
     * @var \DateTime $datumEind
30
     */
31
    public $datumEind;
32
33
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
34
     * @JMS\SerializedName("titulatuur")
35
     * @JMS\Type("string")
36
     * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/inspubber01")
0 ignored issues
show
Tag value for @JMS\XmlElement(cdata=false, tag indented incorrectly; expected 6 spaces but found 1
Loading history...
37
     *
38
     * @var string $titulatuur
39
     */
40
    public $titulatuur;
41
42
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
43
     * @JMS\SerializedName("voorletters")
44
     * @JMS\Type("string")
45
     * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/inspubber01")
0 ignored issues
show
Tag value for @JMS\XmlElement(cdata=false, tag indented incorrectly; expected 7 spaces but found 1
Loading history...
46
     *
47
     * @var string $voorletters
48
     */
49
    public $voorletters;
50
51
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
52
     * @JMS\SerializedName("voorvoegsel")
53
     * @JMS\Type("string")
54
     * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/inspubber01")
0 ignored issues
show
Tag value for @JMS\XmlElement(cdata=false, tag indented incorrectly; expected 7 spaces but found 1
Loading history...
55
     *
56
     * @var string $voorvoegsel
57
     */
58
    public $voorvoegsel;
59
60
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
61
     * @JMS\SerializedName("achternaam")
62
     * @JMS\Type("string")
63
     * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/inspubber01")
0 ignored issues
show
Tag value for @JMS\XmlElement(cdata=false, tag indented incorrectly; expected 6 spaces but found 1
Loading history...
64
     *
65
     * @var string $achternaam
66
     */
67
    public $achternaam;
68
69
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
70
     * @JMS\SerializedName("CB")
71
     * @JMS\Type("string")
72
     * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/inspubber01")
73
     *
74
     * @var string $cB
75
     */
76
    public $cB;
77
78
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
79
     * @JMS\SerializedName("adres")
80
     * @JMS\Type("DMT\Insolvency\Model\InspubAdresCBElem")
81
     * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/inspubber01")
0 ignored issues
show
Tag value for @JMS\XmlElement(cdata=false, tag indented incorrectly; expected 24 spaces but found 1
Loading history...
82
     *
83
     * @var InspubAdresCBElem $adres
84
     */
85
    public $adres;
86
}
87