Fix to getCellStyleXfByHashCode() method
This commit is contained in:
parent
41d970f125
commit
5e24bcfedc
|
@ -1011,7 +1011,7 @@ class PHPExcel
|
||||||
*/
|
*/
|
||||||
public function getCellStyleXfByHashCode($pValue = '')
|
public function getCellStyleXfByHashCode($pValue = '')
|
||||||
{
|
{
|
||||||
foreach ($this->_cellXfStyleCollection as $cellStyleXf) {
|
foreach ($this->_cellStyleXfCollection as $cellStyleXf) {
|
||||||
if ($cellStyleXf->getHashCode() == $pValue) {
|
if ($cellStyleXf->getHashCode() == $pValue) {
|
||||||
return $cellStyleXf;
|
return $cellStyleXf;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue