Skip to content

Commit 0d4df52

Browse files
committed
MAGETWO-60483: Catalog broken when all child products of configurable are disabled
- Fixes after code review;
1 parent 306a065 commit 0d4df52

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/code/Magento/Catalog/Model/Product/Pricing/Renderer/SalableResolver.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
namespace Magento\Catalog\Model\Product\Pricing\Renderer;
88

99
/**
10-
* Resolver provided to check is product available for sale
10+
* Resolvers checks whether product is available for sale or not
1111
*/
1212
class SalableResolver implements SalableResolverInterface
1313
{
1414
/**
15-
* Check is product available for sale
15+
* Check whether product is available for sale
1616
*
1717
* @param \Magento\Framework\Pricing\SaleableInterface $salableItem
1818
* @return boolean

app/code/Magento/Catalog/Model/Product/Pricing/Renderer/SalableResolverInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
namespace Magento\Catalog\Model\Product\Pricing\Renderer;
88

99
/**
10-
* Interface resolver provided to check is product available for sale
10+
* Interface resolver checks whether product is available for sale
1111
*/
1212
interface SalableResolverInterface
1313
{
1414
/**
15-
* Check is product available for sale
15+
* Check whether product is available for sale
1616
*
1717
* @param \Magento\Framework\Pricing\SaleableInterface $salableItem
1818
* @return boolean

0 commit comments

Comments
 (0)