Total Complexity | 3 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
25 | class ReportBasePageHeader extends ReportBaseElement |
||
26 | { |
||
27 | /** @var ReportBaseElement[] Elements */ |
||
28 | public $elements = []; |
||
29 | |||
30 | /** |
||
31 | * Create a page header |
||
32 | */ |
||
33 | public function __construct() |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * Unknown? |
||
40 | * |
||
41 | * @return void |
||
42 | */ |
||
43 | public function textBox(): void |
||
44 | { |
||
45 | $this->elements = []; |
||
46 | } |
||
47 | |||
48 | /** |
||
49 | * Add element - PageHeader |
||
50 | * |
||
51 | * @param ReportBaseElement $element |
||
52 | * |
||
53 | * @return void |
||
54 | */ |
||
55 | public function addElement($element): void |
||
58 | } |
||
59 | } |
||
60 |