precision() public method

public precision ( ) : integer
return integer
Exemplo n.º 1
0
 /**
  * @param CreateProduct $createProduct
  *
  * @throws \Exception
  */
 public function handle(CreateProduct $createProduct)
 {
     $this->products->add(new Product(new SKU($createProduct->sku()), new Price($createProduct->amount(), $createProduct->currency(), $createProduct->precision()), $createProduct->isInStock()));
 }