Skip to content

Commit

Permalink
Fixed getCellKeys()
Browse files Browse the repository at this point in the history
  • Loading branch information
JPustkuchen committed Jun 11, 2021
1 parent ede669a commit 5f3571c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Elements/TableRow.php
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ protected function hasCell(string $key): bool {
* Returns an array of all cell keys.
*/
public function getCellKeys(): array {
return array_keys($this->cells);
return array_keys($this->cellsByKey);
}

/**
Expand Down

0 comments on commit 5f3571c

Please sign in to comment.