| Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-product-alert/Model/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/module-product-alert/Model/ProductSalability.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\ProductAlert\Model;
use Magento\Catalog\Api\Data\ProductInterface;
use Magento\Store\Api\Data\WebsiteInterface;
/**
* Checks product salability
*/
class ProductSalability
{
/**
* @param ProductInterface $product
* @param WebsiteInterface $website
* @return bool
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function isSalable(ProductInterface $product, WebsiteInterface $website): bool
{
return $product->isSalable();
}
}