1 | <?php |
||
2 | |||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
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 GetCase |
||
11 | * |
||
12 | * @JMS\XmlNamespace("http://www.rechtspraak.nl/namespaces/cir01") |
||
13 | * @JMS\XmlRoot("getCase", namespace="http://www.rechtspraak.nl/namespaces/cir01") |
||
0 ignored issues
–
show
|
|||
14 | */ |
||
0 ignored issues
–
show
|
|||
15 | class GetCase implements Request |
||
16 | { |
||
17 | /** |
||
0 ignored issues
–
show
|
|||
18 | * @Assert\NotNull |
||
19 | * @Assert\Regex("~([0-9]{2}\.){0,1}[a-z]{3}\.[0-9]{2}\.[0-9]{1,4}\.[F|S|R]\.[0-9]{4}\.[0-9]{1,2}\.[0-9]{2}~") |
||
20 | * |
||
21 | * @JMS\SerializedName("publicationNumber") |
||
22 | * @JMS\Type("string") |
||
23 | * @JMS\XmlElement(cdata=false) |
||
24 | * |
||
25 | * @var string $publicationNumber |
||
26 | */ |
||
27 | public $publicationNumber; |
||
28 | } |
||
29 |