@@ -87,8 +87,8 @@ |
||
87 | 87 | * majorGridlines and minorGridlines are deprecated, moved to Axis. |
88 | 88 | */ |
89 | 89 | public function __construct(/** |
90 | - * Chart Name. |
|
91 | - */ |
|
90 | + * Chart Name. |
|
91 | + */ |
|
92 | 92 | private string $name, /** |
93 | 93 | * Chart Title. |
94 | 94 | */ |
@@ -26,10 +26,10 @@ |
||
26 | 26 | * Create a new Title. |
27 | 27 | */ |
28 | 28 | public function __construct(/** |
29 | - * Title Caption. |
|
30 | - * |
|
31 | - * @var array<RichText|string>|RichText|string |
|
32 | - */ |
|
29 | + * Title Caption. |
|
30 | + * |
|
31 | + * @var array<RichText|string>|RichText|string |
|
32 | + */ |
|
33 | 33 | private array|RichText|string $caption = '', /** |
34 | 34 | * Title Layout. |
35 | 35 | */ |
@@ -2870,8 +2870,8 @@ |
||
2870 | 2870 | ]; |
2871 | 2871 | |
2872 | 2872 | public function __construct(/** |
2873 | - * Instance of the spreadsheet this Calculation Engine is using. |
|
2874 | - */ |
|
2873 | + * Instance of the spreadsheet this Calculation Engine is using. |
|
2874 | + */ |
|
2875 | 2875 | private ?Spreadsheet $spreadsheet = null |
2876 | 2876 | ) { |
2877 | 2877 | $this->cyclicReferenceStack = new CyclicReferenceStack(); |
@@ -15,8 +15,8 @@ |
||
15 | 15 | * Constructor. |
16 | 16 | */ |
17 | 17 | public function __construct(/** |
18 | - * Font. |
|
19 | - */ |
|
18 | + * Font. |
|
19 | + */ |
|
20 | 20 | private \PhpOffice\PhpSpreadsheet\Style\Font $font |
21 | 21 | ) { |
22 | 22 | $this->colorIndex = 0x7FFF; |
@@ -123,8 +123,8 @@ |
||
123 | 123 | * Create a new HTML. |
124 | 124 | */ |
125 | 125 | public function __construct(/** |
126 | - * Spreadsheet object. |
|
127 | - */ |
|
126 | + * Spreadsheet object. |
|
127 | + */ |
|
128 | 128 | protected Spreadsheet $spreadsheet |
129 | 129 | ) { |
130 | 130 | $this->defaultFont = $this->spreadsheet->getDefaultStyle()->getFont(); |
@@ -318,8 +318,8 @@ |
||
318 | 318 | * Create a new worksheet. |
319 | 319 | */ |
320 | 320 | public function __construct(/** |
321 | - * Parent spreadsheet. |
|
322 | - */ |
|
321 | + * Parent spreadsheet. |
|
322 | + */ |
|
323 | 323 | private ?Spreadsheet $parent = null, |
324 | 324 | string $title = 'Worksheet' |
325 | 325 | ) { |
@@ -93,8 +93,8 @@ |
||
93 | 93 | * @throws SpreadsheetException |
94 | 94 | */ |
95 | 95 | public function __construct(/** |
96 | - * Value of the cell. |
|
97 | - */ |
|
96 | + * Value of the cell. |
|
97 | + */ |
|
98 | 98 | private mixed $value, |
99 | 99 | ?string $dataType, |
100 | 100 | Worksheet $worksheet |