unnecessary string concatenation
This commit is contained in:
parent
ba735e21d6
commit
fac1d6de14
|
@ -690,7 +690,7 @@ class Worksheet implements IComparable
|
||||||
public function calculateWorksheetDimension()
|
public function calculateWorksheetDimension()
|
||||||
{
|
{
|
||||||
// Return
|
// Return
|
||||||
return 'A1' . ':' . $this->getHighestColumn() . $this->getHighestRow();
|
return 'A1:' . $this->getHighestColumn() . $this->getHighestRow();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -701,7 +701,7 @@ class Worksheet implements IComparable
|
||||||
public function calculateWorksheetDataDimension()
|
public function calculateWorksheetDataDimension()
|
||||||
{
|
{
|
||||||
// Return
|
// Return
|
||||||
return 'A1' . ':' . $this->getHighestDataColumn() . $this->getHighestDataRow();
|
return 'A1:' . $this->getHighestDataColumn() . $this->getHighestDataRow();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue