Payu\Component\Basket::add PHP Method

add() public method

Add new product to basket
public add ( Product $product )
$product Product
    public function add(Product $product)
    {
        $this->collection[$product->getCode()] = $product;
    }

Usage Example

 /**
  * @param Product $product
  * @return $this
  */
 public function addProduct(Product $product)
 {
     $this->basket->add($product);
     return $this;
 }