Sylius\Behat\Page\Admin\ProductVariant\UpdatePageInterface::specifyPrice PHP Method

specifyPrice() public method

public specifyPrice ( integer $price )
$price integer
    public function specifyPrice($price);

Usage Example

 /**
  * @When /^I change its price to "(?:€|£|\$)([^"]+)"$/
  */
 public function iChangeItsPriceTo($price)
 {
     $this->updatePage->specifyPrice($price);
 }