Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
duncanmcclean authored and github-actions[bot] committed Oct 31, 2024
1 parent aa99ef3 commit b71390f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Http/Controllers/MappingsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ public function __invoke(MappingsRequest $request)
$blueprint = $this->getBlueprint($request);

$row = match ($request->type) {
'csv' => (new Csv())->getItems($request->path)->first(),
'xml' => (new Xml())->getItems($request->path)->first(),
'csv' => (new Csv)->getItems($request->path)->first(),
'xml' => (new Xml)->getItems($request->path)->first(),
};

return [
Expand Down

0 comments on commit b71390f

Please sign in to comment.