Issues (1574)

src/Model/VerwijderdeInsolventie.php (12 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 VerwijderdeInsolventie
9
 *
10
 * @JMS\XmlNamespace("http://www.rechtspraak.nl/namespaces/cir01")
11
 * @JMS\XmlRoot("verwijderdeInsolventie", namespace="http://www.rechtspraak.nl/namespaces/inspubber01")
0 ignored issues
show
Tag value for @JMS\XmlRoot("verwijderdeInsolventie", tag indented incorrectly; expected 26 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 VerwijderdeInsolventie
14
{
15
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
16
     * @JMS\SerializedName("insolventienummer")
17
     * @JMS\Type("string")
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 13 spaces but found 1
Loading history...
19
     *
20
     * @var string $insolventienummer
21
     */
22
    public $insolventienummer;
23
24
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
25
     * @JMS\SerializedName("publicatieKenmerk")
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 13 spaces but found 1
Loading history...
28
     *
29
     * @var string $publicatieKenmerk
30
     */
31
    public $publicatieKenmerk;
32
33
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
34
     * @JMS\SerializedName("reden")
35
     * @JMS\Type("string'>")
36
     * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/inspubber01")
37
     *
38
     * @var string $reden
39
     */
40
    public $reden;
41
}
42