unnecessary string concatenation

This commit is contained in:
Diego Souza 2019-09-22 22:00:06 -03:00 committed by Adrien Crivelli
parent ba735e21d6
commit fac1d6de14
No known key found for this signature in database
GPG Key ID: B182FD79DC6DE92E
1 changed files with 2 additions and 2 deletions

View File

@ -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();
} }
/** /**