With https://github.com/doctrine/dbal/pull/6177, the bigint will now be casted to `int` by doctrine. So I assume the BigIntType will need to be updated for Doctrine 4. I assume https://github.com/phpstan/phpstan-doctrine/blob/39d78ad7ca5386acf71f727b9ae5ae5979a5e1ea/src/Type/Doctrine/Descriptors/BigIntType.php#L21 need to be changed at least from numeric-string to numeric "if DBAL version is 4". Or should it be `BenevolentUnion(int, numeric)` because most of users use them for small enough values (?).