Doctrine\Tests\Models\ECommerce\ECommerceCart::removeCustomer PHP Method

removeCustomer() public method

public removeCustomer ( )
    public function removeCustomer()
    {
        if ($this->customer !== null) {
            $customer = $this->customer;
            $this->customer = null;
            $customer->removeCart();
        }
    }