Skip to content

Commit b0598d3

Browse files
authored
Merge pull request #209 from TaylorWilton/fix/dynamic-column-format-property
Fix typo causing dynamic property deprecation warning in Concerns\WithColumnFormats
2 parents 86266e2 + d8fb105 commit b0598d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Exports/Concerns/WithColumnFormats.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function columnFormats(): array
1616

1717
public function getColumnFormats(): array
1818
{
19-
return $this->columnFormat ??= $this->getMapping($this->getModelInstance())
19+
return $this->columnFormats ??= $this->getMapping($this->getModelInstance())
2020
->values()
2121
->mapWithKeys(fn (Column $column, $key) => [
2222
Coordinate::stringFromColumnIndex($key + 1) => $this->evaluate($column->getFormat()),

0 commit comments

Comments
 (0)