Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
LegalEntityEnum
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2/**
3 * Jingga
4 *
5 * PHP Version 8.1
6 *
7 * @package   phpOMS\Localization
8 * @copyright Dennis Eichhorn
9 * @license   OMS License 2.0
10 * @version   1.0.0
11 * @link      https://jingga.app
12 */
13declare(strict_types=1);
14
15namespace phpOMS\Localization;
16
17use phpOMS\Stdlib\Base\Enum;
18
19/**
20 * Legal entity types.
21 *
22 * @package phpOMS\Localization
23 * @license OMS License 2.0
24 * @link    https://jingga.app
25 * @since   1.0.0
26 */
27class LegalEntityEnum extends Enum
28{
29    public const DEU_EINZELUNTERNEHMEN = 1;
30
31    public const DEU_KAUFMANN = 2;
32
33    public const DEU_GBR = 3;
34
35    public const DEU_OHG = 4;
36
37    public const DEU_KG = 5;
38
39    public const DEU_KGAA = 6;
40
41    public const DEU_GMBH = 7;
42
43    public const DEU_UG = 8;
44
45    public const DEU_GMBH_CO_KG = 9;
46
47    public const DEU_GMBH_CO_KGAA = 10;
48
49    public const DEU_AG = 11;
50
51    public const DEU_AG_CO_KG = 12;
52
53    public const DEU_AG_CO_KGAA = 13;
54
55    public const DEU_SE_CO_KGAA = 14;
56
57    public const DEU_GMBH_CO_OHG = 15;
58
59    public const DEU_PARTG = 16;
60
61    public const DEU_PARTGMBBH = 17;
62
63    public const DEU_EV = 18;
64
65    public const DEU_RV = 19;
66
67    public const DEU_EG = 20;
68
69    public const DEU_KOERPERSCHAFT_OEFFENTLICHEN_RECHTS = 21;
70
71    public const DEU_STIFTUNG = 22;
72
73    public const DEU_STIFTUNG_OEFFENTLICHEN_RECHTS = 23;
74
75    public const DEU_ANSTALT_OEFFENTLICHEN_RECHTS = 24;
76}