Skip to content

Commit c06bd75

Browse files
authored
fix: cs
1 parent 56b94a4 commit c06bd75

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Transformers/DataArrayTransformer.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ protected function buildColumnByCollection(array $row, Collection $columns, stri
5252
$data = is_array($data) ? json_encode($data) : $this->decodeContent($data);
5353
}
5454

55-
if(isset($column->exportRender)){
55+
if (isset($column->exportRender)) {
5656
$callback = $column->exportRender;
57-
$results[$title] = $callback($row,$data);
58-
}else{
57+
$results[$title] = $callback($row, $data);
58+
} else {
5959
$results[$title] = $data;
6060
}
6161
}

0 commit comments

Comments
 (0)