Guess no one is using this anymore...
I gave it a go and have the Uncaught TypeError: count(): Argument #1 ($value) must be of type Countable|array...
Error in Table.php.
I modified the getRowsCount and getColumnsCount functions to address the issue: (starting line 794)
public function getRowsCount()
{
if (is_countable($this->_rows)) {
return count($this->_rows);
} else {
return 0;
}
}
public function getColumnsCount()
{
if (is_countable($this->_columns)) {
return count($this->_columns);
} else {
return 0;
}
}
Appears to work fine.
Cheers!
Guess no one is using this anymore...
I gave it a go and have the Uncaught TypeError: count(): Argument #1 ($value) must be of type Countable|array...
Error in Table.php.
I modified the getRowsCount and getColumnsCount functions to address the issue: (starting line 794)
Appears to work fine.
Cheers!