Example #1
0
 /**
  * @param ProductInterface $product
  * @param string $code
  */
 public function setProductSKU(ProductInterface $product, $code)
 {
     $sku = new SKUIdentifier();
     $sku->setCode($code);
     $product->addIdentifier($sku);
 }