コード例 #1
0
ファイル: ProductContext.php プロジェクト: andrew-pits/Sylius
 /**
  * @Given /^(product "[^"]+") belongs to ("[^"]+" tax category)$/
  */
 public function productBelongsToTaxCategory(ProductInterface $product, TaxCategoryInterface $taxCategory)
 {
     $product->setTaxCategory($taxCategory);
     $this->productManager->flush($product);
 }
コード例 #2
0
ファイル: ProductContext.php プロジェクト: weppyk/Sylius
 /**
  * @Given /^(product "[^"]+") belongs to ("[^"]+" tax category)$/
  */
 public function productBelongsToTaxCategory(ProductInterface $product, TaxCategoryInterface $taxCategory)
 {
     $product->setTaxCategory($taxCategory);
 }