Ejemplo n.º 1
0
 /**
  * Update/set SKU in cart
  *
  * @param int   SKU ID
  * @param int   Quantity
  * @param bool  Retain old value
  * @return void
  */
 public function update($sId, $qty = 1, $retainOldValue = false)
 {
     parent::update($sId, $qty, $retainOldValue);
     // Update session
     $this->syncSessionCart();
 }