Josegonzalez\Upload\Validation\Traits\UploadValidationTrait::isUnderFormSizeLimit PHP Метод

isUnderFormSizeLimit() публичный статический Метод

Check that the file does not exceed the max file size specified in the HTML Form
public static isUnderFormSizeLimit ( mixed $check ) : boolean
$check mixed Value to check
Результат boolean Success
    public static function isUnderFormSizeLimit($check)
    {
        return Hash::get($check, 'error') !== UPLOAD_ERR_FORM_SIZE;
    }