chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
raw
history blame contribute delete
196 Bytes
<?php
declare(strict_types=1);
namespace Mautic\CoreBundle\Helper;
class IntHelper
{
public const MIN_INTEGER_VALUE = -2_147_483_648;
public const MAX_INTEGER_VALUE = 2_147_483_647;
}