Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CS][DX] Refactor #17605

Merged
merged 1 commit into from
Jan 7, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -37,7 +37,7 @@ function it_is_initializable(): void

function it_does_nothing_if_cart_is_not_managed(
EntityManagerInterface $manager,
OrderInterface $cart
OrderInterface $cart,
): void {
$manager->contains($cart)->willReturn(false);

@@ -53,7 +53,7 @@ function it_resets_changes_for_cart_items_and_units(
OrderItemInterface $item,
OrderItemUnitInterface $unitNew,
OrderItemUnitInterface $unitExisting,
Collection $itemsCollection
Collection $itemsCollection,
): void {
$manager->contains($cart)->willReturn(true);
$manager->getUnitOfWork()->willReturn($unitOfWork);
Loading