Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
IncomeStatement | 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\Accounting\Models |
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\Accounting\Models; |
16 | |
17 | /** |
18 | * IncomeStatement class. |
19 | * |
20 | * @package Modules\Accounting\Models |
21 | * @license OMS License 2.0 |
22 | * @link https://jingga.app |
23 | * @since 1.0.0 |
24 | */ |
25 | class IncomeStatement |
26 | { |
27 | /** |
28 | * ID. |
29 | * |
30 | * @var int |
31 | * @since 1.0.0 |
32 | */ |
33 | public int $id = 0; |
34 | |
35 | /** |
36 | * Date. |
37 | * |
38 | * @var null|\DateTime |
39 | * @since 1.0.0 |
40 | */ |
41 | public ?\DateTime $date = null; |
42 | |
43 | /** |
44 | * Income statement structure. |
45 | * |
46 | * @var array |
47 | * @since 1.0.0 |
48 | */ |
49 | public array $incomeStatement = []; |
50 | } |