diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Columns/ElementColumn.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Columns/ElementColumn.php b/src/Columns/ElementColumn.php index 5ad7c7c..71f0750 100644 --- a/src/Columns/ElementColumn.php +++ b/src/Columns/ElementColumn.php @@ -25,7 +25,7 @@ abstract class ElementColumn extends Column return $this->elemAttributesFn?->call($this, $row) ?? []; } - protected function getContent(Model $row) + protected function getContent(Model $row): string { $content = parent::getContent($row); $attributes = new ComponentAttributeBag($this->getElemAttributes($row)); |