Not sure why PHP 7.4 should suddenly have decided to report a notice in a totally unrelated part of the Xml Reader
This commit is contained in:
parent
d009347e25
commit
3997dcc3af
|
@ -570,7 +570,7 @@ class Xml extends BaseReader
|
|||
$columnReference = $columnNumber;
|
||||
}
|
||||
// Bracketed C references are relative to the current column
|
||||
if ($columnReference[0] == '[') {
|
||||
if (is_string($columnReference) && $columnReference[0] == '[') {
|
||||
$columnReference = $columnNumber + trim($columnReference, '[]');
|
||||
}
|
||||
$A1CellReference = Coordinate::stringFromColumnIndex($columnReference) . $rowReference;
|
||||
|
|
Loading…
Reference in New Issue