Issues (1574)

src/Model/InspubAdresInsolvente.php (21 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 InspubAdresInsolvente
9
 *
10
 * @JMS\XmlNamespace("http://www.rechtspraak.nl/namespaces/inspubber01")
11
 * @JMS\XmlRoot("inspubAdresInsolvente", namespace="http://www.rechtspraak.nl/namespaces/inspubber01")
0 ignored issues
show
Tag value for @JMS\XmlRoot("inspubAdresInsolvente", tag indented incorrectly; expected 33 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 InspubAdresInsolvente
14
{
15
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
16
     * @JMS\SerializedName("datumBegin")
17
     * @JMS\Type("DateTime<'Y-m-dP'>")
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("straat")
26
     * @JMS\Type("string")
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 2 spaces but found 1
Loading history...
28
     *
29
     * @var string $straat
30
     */
31
    public $straat;
32
33
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
34
     * @JMS\SerializedName("huisnummer")
35
     * @JMS\Type("int")
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 int $huisnummer
39
     */
40
    public $huisnummer;
41
42
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
43
     * @JMS\SerializedName("huisnummerToevoeging1")
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 17 spaces but found 1
Loading history...
46
     *
47
     * @var string $huisnummerToevoeging1
48
     */
49
    public $huisnummerToevoeging1;
50
51
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
52
     * @JMS\SerializedName("huisnummerToevoeging2")
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 17 spaces but found 1
Loading history...
55
     *
56
     * @var string $huisnummerToevoeging2
57
     */
58
    public $huisnummerToevoeging2;
59
60
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
61
     * @JMS\SerializedName("postcode")
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 4 spaces but found 1
Loading history...
64
     *
65
     * @var string $postcode
66
     */
67
    public $postcode;
68
69
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
70
     * @JMS\SerializedName("plaats")
71
     * @JMS\Type("string")
72
     * @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 2 spaces but found 1
Loading history...
73
     *
74
     * @var string $plaats
75
     */
76
    public $plaats;
77
}
78