Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
Controller | 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 Modules\Billing |
8 | * @copyright Dennis Eichhorn |
9 | * @license OMS License 2.0 |
10 | * @version 1.0.0 |
11 | * @link https://jingga.app |
12 | */ |
13 | declare(strict_types=1); |
14 | |
15 | namespace Modules\Billing\Controller; |
16 | |
17 | use phpOMS\Module\ModuleAbstract; |
18 | use phpOMS\Module\WebInterface; |
19 | |
20 | /** |
21 | * Billing class. |
22 | * |
23 | * @package Modules\Billing |
24 | * @license OMS License 2.0 |
25 | * @link https://jingga.app |
26 | * @since 1.0.0 |
27 | */ |
28 | class Controller extends ModuleAbstract implements WebInterface |
29 | { |
30 | /** |
31 | * Module path. |
32 | * |
33 | * @var string |
34 | * @since 1.0.0 |
35 | */ |
36 | public const PATH = __DIR__ . '/../'; |
37 | |
38 | /** |
39 | * Module version. |
40 | * |
41 | * @var string |
42 | * @since 1.0.0 |
43 | */ |
44 | public const VERSION = '1.0.0'; |
45 | |
46 | /** |
47 | * Module name. |
48 | * |
49 | * @var string |
50 | * @since 1.0.0 |
51 | */ |
52 | public const NAME = 'Billing'; |
53 | |
54 | /** |
55 | * Module id. |
56 | * |
57 | * @var int |
58 | * @since 1.0.0 |
59 | */ |
60 | public const ID = 1005100000; |
61 | |
62 | /** |
63 | * Providing. |
64 | * |
65 | * @var string[] |
66 | * @since 1.0.0 |
67 | */ |
68 | public static array $providing = []; |
69 | |
70 | /** |
71 | * Dependencies. |
72 | * |
73 | * @var string[] |
74 | * @since 1.0.0 |
75 | */ |
76 | public static array $dependencies = []; |
77 | } |