Skip to content

Commit 56813fe

Browse files
committed
Fix find-and-replace issue with getters.
1 parent 665f302 commit 56813fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Matrix.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -602,15 +602,15 @@ public function __get($property)
602602
*/
603603
public function getColumnCount()
604604
{
605-
return $this->getColumnCount();
605+
return $this->columnCount;
606606
}
607607

608608
/**
609609
* @return int
610610
*/
611611
public function getRowCount()
612612
{
613-
return $this->getRowCount();
613+
return $this->rowCount;
614614
}
615615

616616
/**

0 commit comments

Comments
 (0)