Skip to content

Commit

Permalink
fix: remove phpstan ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
cyl3x committed Feb 7, 2025
1 parent 1e62e31 commit 823c761
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OrdersApi/Builder/Util/ItemListProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function getItemList(CurrencyEntity $currency, OrderEntity $order): ItemC

$items = new ItemCollection();
$currencyCode = $currency->getIsoCode();
$isNet = $taxStatus !== CartPrice::TAX_STATE_GROSS; /* @phpstan-ignore-line */
$isNet = $taxStatus !== CartPrice::TAX_STATE_GROSS;
$lineItems = $order->getNestedLineItems();
if ($lineItems === null) {
return new ItemCollection();
Expand Down

0 comments on commit 823c761

Please sign in to comment.