1 | <?php |
||
2 | |||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
3 | namespace DMT\Insolvency\Model; |
||
4 | |||
5 | interface RechtbankCode |
||
0 ignored issues
–
show
|
|||
6 | { |
||
7 | /** Court 's-Hertogenbosch */ |
||
0 ignored issues
–
show
|
|||
8 | public const COURT_01 = "01"; |
||
9 | /** Court Breda */ |
||
0 ignored issues
–
show
|
|||
10 | public const COURT_02 = "02"; |
||
11 | /** Court Maastricht */ |
||
0 ignored issues
–
show
|
|||
12 | public const COURT_03 = "03"; |
||
13 | /** Court Roermond */ |
||
0 ignored issues
–
show
|
|||
14 | public const COURT_04 = "04"; |
||
15 | /** Court Arnhem */ |
||
0 ignored issues
–
show
|
|||
16 | public const COURT_05 = "05"; |
||
17 | /** Court Zutphen */ |
||
0 ignored issues
–
show
|
|||
18 | public const COURT_06 = "06"; |
||
19 | /** Court Zwolle-Lelystad */ |
||
0 ignored issues
–
show
|
|||
20 | public const COURT_07 = "07"; |
||
21 | /** Court Almelo */ |
||
0 ignored issues
–
show
|
|||
22 | public const COURT_08 = "08"; |
||
23 | /** Court 's-Gravenhage */ |
||
0 ignored issues
–
show
|
|||
24 | public const COURT_09 = "09"; |
||
25 | /** Court Rotterdam */ |
||
0 ignored issues
–
show
|
|||
26 | public const COURT_10 = "10"; |
||
27 | /** Court Dordrecht */ |
||
0 ignored issues
–
show
|
|||
28 | public const COURT_11 = "11"; |
||
29 | /** Court Middelburg */ |
||
0 ignored issues
–
show
|
|||
30 | public const COURT_12 = "12"; |
||
31 | /** Court Amsterdam */ |
||
0 ignored issues
–
show
|
|||
32 | public const COURT_13 = "13"; |
||
33 | /** Court Alkmaar */ |
||
0 ignored issues
–
show
|
|||
34 | public const COURT_14 = "14"; |
||
35 | /** Court Haarlem */ |
||
0 ignored issues
–
show
|
|||
36 | public const COURT_15 = "15"; |
||
37 | /** Court Utrecht */ |
||
0 ignored issues
–
show
|
|||
38 | public const COURT_16 = "16"; |
||
39 | /** Court Leeuwarden */ |
||
0 ignored issues
–
show
|
|||
40 | public const COURT_17 = "17"; |
||
41 | /** Court Groningen */ |
||
0 ignored issues
–
show
|
|||
42 | public const COURT_18 = "18"; |
||
43 | /** Court Assen */ |
||
0 ignored issues
–
show
|
|||
44 | public const COURT_19 = "19"; |
||
45 | /** Court Amsterdam */ |
||
0 ignored issues
–
show
|
|||
46 | public const COURT_40 = "40"; |
||
47 | /** Court Noord-Holland */ |
||
0 ignored issues
–
show
|
|||
48 | public const COURT_41 = "41"; |
||
49 | /** Court Oost-Nederland */ |
||
0 ignored issues
–
show
|
|||
50 | public const COURT_44 = "44"; |
||
51 | /** Court Den Haag */ |
||
0 ignored issues
–
show
|
|||
52 | public const COURT_45 = "45"; |
||
53 | /** Court Rotterdam */ |
||
0 ignored issues
–
show
|
|||
54 | public const COURT_46 = "46"; |
||
55 | /** Court Limburg */ |
||
0 ignored issues
–
show
|
|||
56 | public const COURT_47 = "47"; |
||
57 | /** Court Oost-Brabant */ |
||
0 ignored issues
–
show
|
|||
58 | public const COURT_48 = "48"; |
||
59 | /** Court Zeeland-West-Brabant */ |
||
0 ignored issues
–
show
|
|||
60 | public const COURT_49 = "49"; |
||
61 | /** Court Gelderland */ |
||
0 ignored issues
–
show
|
|||
62 | public const COURT_50 = "50"; |
||
63 | /** Court Overijssel */ |
||
0 ignored issues
–
show
|
|||
64 | public const COURT_51 = "51"; |
||
65 | } |
||
66 |