specifyPrice() публичный Метод

public specifyPrice ( integer $nth, integer $price, string $channelName )
$nth integer
$price integer
$channelName string
 /**
  * @When /^I specify that the (\d)(?:st|nd|rd|th) variant costs "(?:€|£|\$)([^"]+)" in ("[^"]+") channel$/
  */
 public function iSpecifyThereAreVariantsWithCost($nthVariant, $price, $channelName)
 {
     $this->generatePage->specifyPrice($nthVariant - 1, $price, $channelName);
 }