* @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\Attachment\Configuration; /** * Stores attachment validation configuration values */ final class AttachmentConstraint { /** * Maximum length for name (value is constrained by database) */ public const MAX_NAME_LENGTH = 32; /** * Prevents class to be instantiated */ private function __construct() { } }