Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Feb 27, 2024
1 parent 20acf2f commit 861ff7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Foundation/Listeners/CalculateTaxes.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function handle(CheckoutEvent|CartEvent $event): void
}
$checkout->setTaxesAmount(
DetailedAmount::fromArray(
Arr::mapWithKeys($taxes, fn($amount, $title) => [['title' => $title, 'amount' => $amount]]),
Arr::mapWithKeys($taxes, fn ($amount, $title) => [['title' => $title, 'amount' => $amount]]),
),
);
}
Expand Down

0 comments on commit 861ff7a

Please sign in to comment.