Skip to content

Instantly share code, notes, and snippets.

@init90
Created October 9, 2017 09:22
Show Gist options
  • Select an option

  • Save init90/0d2e956086a7475b9371daf95be103b9 to your computer and use it in GitHub Desktop.

Select an option

Save init90/0d2e956086a7475b9371daf95be103b9 to your computer and use it in GitHub Desktop.
Drupal 8, clean cart.
use Drupal\commerce_cart\CartManagerInterface;
$store = \Drupal\commerce_store\Entity\Store::load(1);
$cart =\Drupal::service('commerce_cart.cart_provider')->getCart('default', $store);
$cart->delete();
\Drupal::service('commerce_cart.cart_manager')->emptyCart($cart, TRUE);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment