Skip to content

Commit

Permalink
fix phpstan
Browse files Browse the repository at this point in the history
  • Loading branch information
luanfreitasdev committed Oct 2, 2023
1 parent c437318 commit c742a04
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/ProcessDataSource.php
Original file line number Diff line number Diff line change
Expand Up @@ -265,9 +265,7 @@ private function processBatch(BaseCollection $collection): BaseCollection
$columns = collect($columns);

/** @phpstan-ignore-next-line */
$data = $columns->mapWithKeys(
fn ($column, $columnName) => (object) [$columnName => $column((object) $row)]
);
$data = $columns->mapWithKeys(fn ($column, $columnName) => (object) [$columnName => $column((object) $row)]);

$prepareRules = collect();
$actions = collect();
Expand Down

0 comments on commit c742a04

Please sign in to comment.