Issues (1574)

src/Soap/Request/SearchNaturalPerson.php (12 issues)

1
<?php
2
0 ignored issues
show
Missing file doc comment
Loading history...
3
namespace DMT\Insolvency\Soap\Request;
4
5
use DMT\Insolvency\Soap\Request;
6
use JMS\Serializer\Annotation as JMS;
7
use Symfony\Component\Validator\Constraints as Assert;
8
9
/**
10
 * Class SearchNaturalPerson
11
 *
12
 * @JMS\XmlNamespace("http://www.rechtspraak.nl/namespaces/cir01")
13
 * @JMS\XmlRoot("searchNaturalPerson", namespace="http://www.rechtspraak.nl/namespaces/cir01")
0 ignored issues
show
Tag value for @JMS\XmlRoot("searchNaturalPerson", tag indented incorrectly; expected 29 spaces but found 1
Loading history...
14
 */
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...
15
class SearchNaturalPerson implements Request
16
{
17
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
18
     * @JMS\SerializedName("dateOfBirth")
19
     * @JMS\Type("DateTime<'Y-m-d'>")
20
     * @JMS\XmlElement(cdata=false)
21
     *
22
     * @var \DateTime $dateOfBirth
23
     */
24
    public $dateOfBirth;
25
26
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
27
     * @JMS\SerializedName("prefix")
28
     * @JMS\Type("string")
29
     * @JMS\XmlElement(cdata=false)
30
     *
31
     * @var string $prefix
32
     */
33
    public $prefix;
34
35
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
36
     * @JMS\SerializedName("surname")
37
     * @JMS\Type("string")
38
     * @JMS\XmlElement(cdata=false)
39
     *
40
     * @var string $surname
41
     */
42
    public $surname;
43
44
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
45
     * @Assert\PositiveOrZero
46
     *
47
     * @JMS\SerializedName("houseNumber")
48
     * @JMS\Type("string")
49
     * @JMS\XmlElement(cdata=false)
50
     *
51
     * @var int $houseNumber
52
     */
53
    public $houseNumber;
54
55
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
56
     * @Assert\Regex("~[1-9][0-9]{3}[A-Z]{2}~")
57
     *
58
     * @JMS\SerializedName("postalCode")
59
     * @JMS\Type("string")
60
     * @JMS\XmlElement(cdata=false)
61
     *
62
     * @var string $postalCode
63
     */
64
    public $postalCode;
65
}
66