/**
  * Clean the cart (remove all products).
  */
 public static function clean()
 {
     $cm = new CartModel();
     $cm->clean();
 }