mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-15 04:26:25 +00:00
Allow usage of getters before setters
This commit is contained in:
@@ -62,7 +62,7 @@ class Cell implements Stringable
|
||||
/**
|
||||
* Attributes of the formula.
|
||||
*/
|
||||
private mixed $formulaAttributes;
|
||||
private mixed $formulaAttributes = null;
|
||||
|
||||
private IgnoredErrors $ignoredErrors;
|
||||
|
||||
|
||||
@@ -329,7 +329,7 @@ class Font
|
||||
/**
|
||||
* Pad amount for exact in pixels; use best guess if null.
|
||||
*/
|
||||
private static null|float|int $paddingAmountExact;
|
||||
private static null|float|int $paddingAmountExact = null;
|
||||
|
||||
/**
|
||||
* Set pad amount for exact in pixels; use best guess if null.
|
||||
|
||||
Reference in New Issue
Block a user