for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the Spryker Commerce OS.
* For full license information, please view the LICENSE file that was distributed with this source code.
*/
declare(strict_types = 1);
namespace Pyz\Yves\CartPage;
use SprykerShop\Yves\CartPage\CartPageConfig as SprykerCartPageConfig;
class CartPageConfig extends SprykerCartPageConfig
{
* @var bool
protected const IS_CART_ACTIONS_ASYNC_MODE_ENABLED = true;
protected const IS_CART_CART_ITEMS_VIA_AJAX_LOAD_ENABLED = true;
protected const IS_LOADING_UPSELLING_PRODUCTS_VIA_AJAX_ENABLED = true;
protected const IS_QUOTE_VALIDATION_ENABLED_FOR_AJAX_CART_ITEMS = false;
* @return int
public function getCartValidationCacheTTL(): int
return 60;
}