* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ declare(strict_types=1); namespace PrestaShop\PrestaShop\Core\Domain\Product\VirtualProductFile; class VirtualProductFileSettings { /** * Following constants defines maximum characters length constraints for corresponding fields */ public const MAX_DISPLAY_FILENAME_LENGTH = 255; public const MAX_FILENAME_LENGTH = 255; public const MAX_ACCESSIBLE_DAYS_LIMIT = 9999999999; public const MAX_DOWNLOAD_TIMES_LIMIT = 9999999999; /** * Class not supposed to be initialized, it only serves as static storage */ private function __construct() { } }