1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

[2.0] Simplifying code.

This commit is contained in:
romanb 2009-07-01 13:08:24 +00:00
parent 8ccb7df1bb
commit 01147039d4
2 changed files with 2 additions and 6 deletions

View file

@ -61,9 +61,7 @@ class ECommerceCart
if ($this->customer !== null) { if ($this->customer !== null) {
$customer = $this->customer; $customer = $this->customer;
$this->customer = null; $this->customer = null;
if ($customer->getCart() !== null) { $customer->removeCart();
$customer->removeCart();
}
} }
} }

View file

@ -68,9 +68,7 @@ class ECommerceCustomer
if ($this->cart !== null) { if ($this->cart !== null) {
$cart = $this->cart; $cart = $this->cart;
$this->cart = null; $this->cart = null;
if ($cart->getCustomer() !== null) { $cart->removeCustomer();
$cart->removeCustomer();
}
} }
} }
} }