* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Domain\Product\QueryHandler; use PrestaShop\PrestaShop\Core\Domain\Product\Query\GetProductIsEnabled; /** * Interface for service that handles getting product status. */ interface GetProductIsEnabledHandlerInterface { /** * @param GetProductIsEnabled $query * * @return bool */ public function handle(GetProductIsEnabled $query); }